um: Removed unused attributes from thread_struct

temp_stack and mm_count have no users and can be killed.

Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
Richard Weinberger 2013-09-13 19:25:11 +02:00
parent d8ec26d7f8
commit 61aad98a7f
1 changed files with 0 additions and 3 deletions

View File

@ -25,10 +25,8 @@ struct thread_struct {
void *fault_addr;
jmp_buf *fault_catcher;
struct task_struct *prev_sched;
unsigned long temp_stack;
struct arch_thread arch;
jmp_buf switch_buf;
int mm_count;
struct {
int op;
union {
@ -52,7 +50,6 @@ struct thread_struct {
.regs = EMPTY_REGS, \
.fault_addr = NULL, \
.prev_sched = NULL, \
.temp_stack = 0, \
.arch = INIT_ARCH_THREAD, \
.request = { 0 } \
}