diff options
author | Suresh Siddha <suresh.b.siddha@intel.com> | 2008-04-16 10:27:53 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-19 19:19:55 +0200 |
commit | 1679f2710ac58df580d3716fab1f42ae50a226eb (patch) | |
tree | b7ac7e16814d0039a963ab2ee35d7850e9e347a1 /arch/x86 | |
parent | aa283f49276e7d840a40fb01eee6de97eaa7e012 (diff) |
x86: fpu xstate split cleanup
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/process.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c index 0e613e7e7b5..3004d716539 100644 --- a/arch/x86/kernel/process.c +++ b/arch/x86/kernel/process.c @@ -29,11 +29,10 @@ void free_thread_xstate(struct task_struct *tsk) } } - void free_thread_info(struct thread_info *ti) { free_thread_xstate(ti->task); - free_pages((unsigned long)(ti), get_order(THREAD_SIZE)); + free_pages((unsigned long)ti, get_order(THREAD_SIZE)); } void arch_task_cache_init(void) |