diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-09-18 22:25:02 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-01 00:53:10 -0400 |
commit | 460dabab73f2f60198c37ed7bf6d192d23eaa286 (patch) | |
tree | 6bace3cc9bf5127ad23b7fb9019bd21f40bdf1fa /arch/frv/include | |
parent | 02ce496f152df87be081a64796498942c433a2fd (diff) | |
download | linux-3.10-460dabab73f2f60198c37ed7bf6d192d23eaa286.tar.gz linux-3.10-460dabab73f2f60198c37ed7bf6d192d23eaa286.tar.bz2 linux-3.10-460dabab73f2f60198c37ed7bf6d192d23eaa286.zip |
frv: switch to generic sys_execve()
current_pt_regs() here is simply __frame
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/frv/include')
-rw-r--r-- | arch/frv/include/asm/ptrace.h | 1 | ||||
-rw-r--r-- | arch/frv/include/asm/unistd.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/frv/include/asm/ptrace.h b/arch/frv/include/asm/ptrace.h index ef6635ca4ec..bd534b2d025 100644 --- a/arch/frv/include/asm/ptrace.h +++ b/arch/frv/include/asm/ptrace.h @@ -76,6 +76,7 @@ register struct pt_regs *__frame asm("gr28"); #define user_mode(regs) (!((regs)->psr & PSR_S)) #define instruction_pointer(regs) ((regs)->pc) #define user_stack_pointer(regs) ((regs)->sp) +#define current_pt_regs() (__frame) extern unsigned long user_stack(const struct pt_regs *); #define profile_pc(regs) ((regs)->pc) diff --git a/arch/frv/include/asm/unistd.h b/arch/frv/include/asm/unistd.h index 67f23a311db..24b64034866 100644 --- a/arch/frv/include/asm/unistd.h +++ b/arch/frv/include/asm/unistd.h @@ -372,6 +372,7 @@ #define __ARCH_WANT_SYS_SIGPROCMASK #define __ARCH_WANT_SYS_RT_SIGACTION #define __ARCH_WANT_SYS_RT_SIGSUSPEND +#define __ARCH_WANT_SYS_EXECVE /* * "Conditional" syscalls |