[PATCH] Make UML use ptrace-abi.h

Include the host architecture's ptrace-abi.h instead of ptrace.h.

There was some cpp mangling of names around the ptrace.h include to avoid
symbol clashes between UML and the host architecture. Most of these can go
away. The exception is struct pt_regs, which is convenient to have in
userspace, but must be renamed in order that UML can define its own.

ptrace-x86_64.h needed to have some now-obsolete cpp cruft and a declaration
removed.

Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Jeff Dike and committed by Linus Torvalds e8df8c33 70e0eb8e

+1 -17
+1 -13
include/asm-um/ptrace-generic.h
··· 8 8 9 9 #ifndef __ASSEMBLY__ 10 10 11 - 12 - #define pt_regs pt_regs_subarch 13 - #define show_regs show_regs_subarch 14 - #define send_sigtrap send_sigtrap_subarch 15 - 16 - #include "asm/arch/ptrace.h" 17 - 18 - #undef pt_regs 19 - #undef show_regs 20 - #undef send_sigtrap 21 - #undef user_mode 22 - #undef instruction_pointer 23 - 11 + #include "asm/arch/ptrace-abi.h" 24 12 #include "sysdep/ptrace.h" 25 13 26 14 struct pt_regs {
-4
include/asm-um/ptrace-x86_64.h
··· 11 11 #include "asm/errno.h" 12 12 #include "asm/host_ldt.h" 13 13 14 - #define signal_fault signal_fault_x86_64 15 14 #define __FRAME_OFFSETS /* Needed to get the R* macros */ 16 15 #include "asm/ptrace-generic.h" 17 - #undef signal_fault 18 16 19 17 #define HOST_AUDIT_ARCH AUDIT_ARCH_X86_64 20 - 21 - void signal_fault(struct pt_regs_subarch *regs, void *frame, char *where); 22 18 23 19 #define FS_BASE (21 * sizeof(unsigned long)) 24 20 #define GS_BASE (22 * sizeof(unsigned long))