summaryrefslogtreecommitdiff
path: root/arch/riscv/include/asm/ptrace.h
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@sifive.com>2019-01-07 19:45:47 +0300
committerPalmer Dabbelt <palmer@sifive.com>2019-01-07 19:45:47 +0300
commit801009424e05cf110f016d7fac7fcf20ef94941a (patch)
treeb46e0f4c1fa20bbd00dc838c19d3b824cc673b23 /arch/riscv/include/asm/ptrace.h
parent2cffc9569050a8dbc0c4a6ee7186c0919487c3ec (diff)
parent5aeb1b36cedd3a1dfdbfe368629fed52dee34103 (diff)
downloadlinux-801009424e05cf110f016d7fac7fcf20ef94941a.tar.xz
Fix a handful of audit-related issue
This is sort of a mix between a new feature and a bug fix. I've managed to screw up merging this patch set a handful of times but I think it's OK this time around. The main new feature here is audit support for RISC-V, with some fixes to audit-related bugs that cropped up along the way: * The addition of NR_syscalls into unistd.h, which is necessary for CONFIG_FTRACE_SYSCALLS. * The definition of CREATE_TRACE_POINTS so __tracepoint_sys_{enter,exit} get defined. * A fix for trace_sys_exit() so we can enable CONFIG_HAVE_SYSCALL_TRACEPOINTS.
Diffstat (limited to 'arch/riscv/include/asm/ptrace.h')
-rw-r--r--arch/riscv/include/asm/ptrace.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/riscv/include/asm/ptrace.h b/arch/riscv/include/asm/ptrace.h
index bbe1862e8f80..d35ec2f41381 100644
--- a/arch/riscv/include/asm/ptrace.h
+++ b/arch/riscv/include/asm/ptrace.h
@@ -113,6 +113,11 @@ static inline void frame_pointer_set(struct pt_regs *regs,
SET_FP(regs, val);
}
+static inline unsigned long regs_return_value(struct pt_regs *regs)
+{
+ return regs->a0;
+}
+
#endif /* __ASSEMBLY__ */
#endif /* _ASM_RISCV_PTRACE_H */