diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-19 14:42:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-19 14:42:32 -0500 |
commit | cdc7ef8981317cfa9a462b784935e4d2705c6776 (patch) | |
tree | b81a0424a333e72a6223b5764ccde0c8ea36549b /arch/um/include/asm | |
parent | 9066d9b250679f259f06c10f489dfdfa75fb54dd (diff) | |
parent | 33a7d42999b1857d4494f6ad6367e3aef0ae8137 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml
Pull UML changes from Richard Weinberger:
"This pile contains a nice defconfig cleanup, a rewritten stack
unwinder and various cleanups"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml:
um: Remove unused declarations from <as-layout.h>
um: remove used STDIO_CONSOLE Kconfig param
um/vdso: add .gitignore for a couple of targets
arch/um: make it work with defconfig and x86_64
um: Make kstack_depth_to_print conform to arch/x86
um: Get rid of thread_struct->saved_task
um: Make stack trace reliable against kernel mode faults
um: Rewrite show_stack()
Diffstat (limited to 'arch/um/include/asm')
-rw-r--r-- | arch/um/include/asm/processor-generic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/include/asm/processor-generic.h b/arch/um/include/asm/processor-generic.h index c03cd5a02364..d89b02bb6262 100644 --- a/arch/um/include/asm/processor-generic.h +++ b/arch/um/include/asm/processor-generic.h | |||
@@ -19,8 +19,8 @@ struct task_struct; | |||
19 | struct mm_struct; | 19 | struct mm_struct; |
20 | 20 | ||
21 | struct thread_struct { | 21 | struct thread_struct { |
22 | struct task_struct *saved_task; | ||
23 | struct pt_regs regs; | 22 | struct pt_regs regs; |
23 | struct pt_regs *segv_regs; | ||
24 | int singlestep_syscall; | 24 | int singlestep_syscall; |
25 | void *fault_addr; | 25 | void *fault_addr; |
26 | jmp_buf *fault_catcher; | 26 | jmp_buf *fault_catcher; |