diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 04:27:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:05 -0400 |
commit | ba180fd437156f7fd8cfb2fdd021d949eeef08d6 (patch) | |
tree | b9f38b9cdd7a5b1aacf00341d1948314663c5871 /include/asm-um/ptrace-i386.h | |
parent | 77bf4400319db9d2a8af6b00c2be6faa0f3d07cb (diff) |
uml: style fixes pass 3
Formatting changes in the files which have been changed in the course
of folding foo_skas functions into their callers. These include:
copyright updates
header file trimming
style fixes
adding severity to printks
These changes should be entirely non-functional.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-um/ptrace-i386.h')
-rw-r--r-- | include/asm-um/ptrace-i386.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/asm-um/ptrace-i386.h b/include/asm-um/ptrace-i386.h index b733fa32b618..65102c883440 100644 --- a/include/asm-um/ptrace-i386.h +++ b/include/asm-um/ptrace-i386.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -9,9 +9,8 @@ | |||
9 | #define HOST_AUDIT_ARCH AUDIT_ARCH_I386 | 9 | #define HOST_AUDIT_ARCH AUDIT_ARCH_I386 |
10 | 10 | ||
11 | #include "linux/compiler.h" | 11 | #include "linux/compiler.h" |
12 | #include "sysdep/ptrace.h" | ||
13 | #include "asm/ptrace-generic.h" | 12 | #include "asm/ptrace-generic.h" |
14 | #include "asm/host_ldt.h" | 13 | #include "sysdep/ptrace.h" |
15 | 14 | ||
16 | #define PT_REGS_EAX(r) UPT_EAX(&(r)->regs) | 15 | #define PT_REGS_EAX(r) UPT_EAX(&(r)->regs) |
17 | #define PT_REGS_EBX(r) UPT_EBX(&(r)->regs) | 16 | #define PT_REGS_EBX(r) UPT_EBX(&(r)->regs) |
@@ -40,6 +39,12 @@ | |||
40 | 39 | ||
41 | #define user_mode(r) UPT_IS_USER(&(r)->regs) | 40 | #define user_mode(r) UPT_IS_USER(&(r)->regs) |
42 | 41 | ||
42 | /* | ||
43 | * Forward declaration to avoid including sysdep/tls.h, which causes a | ||
44 | * circular include, and compilation failures. | ||
45 | */ | ||
46 | struct user_desc; | ||
47 | |||
43 | extern int ptrace_get_thread_area(struct task_struct *child, int idx, | 48 | extern int ptrace_get_thread_area(struct task_struct *child, int idx, |
44 | struct user_desc __user *user_desc); | 49 | struct user_desc __user *user_desc); |
45 | 50 | ||