diff options
| author | Will Deacon <[email protected]> | 2012-05-04 16:53:52 +0000 |
|---|---|---|
| committer | Russell King <[email protected]> | 2012-05-05 12:54:01 +0000 |
| commit | 2f978366984a418f38fcf44137be1fbc5a89cfd9 (patch) | |
| tree | ab5a8db4722cd61b22b15cd48773cc386aeb9821 | |
| parent | ARM: 7411/1: audit: fix treatment of saved ip register during syscall tracing (diff) | |
| download | kernel-2f978366984a418f38fcf44137be1fbc5a89cfd9.tar.gz kernel-2f978366984a418f38fcf44137be1fbc5a89cfd9.zip | |
ARM: 7412/1: audit: use only AUDIT_ARCH_ARM regardless of endianness
The machine endianness has no direct correspondence to the syscall ABI,
so use only AUDIT_ARCH_ARM when identifying the ABI to the audit tools
in userspace.
Cc: [email protected]
Signed-off-by: Will Deacon <[email protected]>
Signed-off-by: Russell King <[email protected]>
| -rw-r--r-- | arch/arm/kernel/ptrace.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c index d8dbe9ca66b0..9650c143afc1 100644 --- a/arch/arm/kernel/ptrace.c +++ b/arch/arm/kernel/ptrace.c @@ -906,12 +906,6 @@ long arch_ptrace(struct task_struct *child, long request, return ret; } -#ifdef __ARMEB__ -#define AUDIT_ARCH_NR AUDIT_ARCH_ARMEB -#else -#define AUDIT_ARCH_NR AUDIT_ARCH_ARM -#endif - asmlinkage int syscall_trace(int why, struct pt_regs *regs, int scno) { unsigned long ip; @@ -919,7 +913,7 @@ asmlinkage int syscall_trace(int why, struct pt_regs *regs, int scno) if (why) audit_syscall_exit(regs); else - audit_syscall_entry(AUDIT_ARCH_NR, scno, regs->ARM_r0, + audit_syscall_entry(AUDIT_ARCH_ARM, scno, regs->ARM_r0, regs->ARM_r1, regs->ARM_r2, regs->ARM_r3); if (!test_thread_flag(TIF_SYSCALL_TRACE)) |
