]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
x86: reduce preemption off section in exit thread
authorThomas Gleixner <tglx@linutronix.de>
Mon, 16 Mar 2009 12:07:21 +0000 (13:07 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 16 Mar 2009 14:32:28 +0000 (15:32 +0100)
Impact: latency improvement

No need to keep preemption disabled over the kfree call.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/kernel/process.c

index 6afa5232dbb739f99c07ff0641cc265428db74eb..156f87582c6cd5e0fcb677b7c685d92c68443d72 100644 (file)
@@ -65,11 +65,11 @@ void exit_thread(void)
 {
        struct task_struct *me = current;
        struct thread_struct *t = &me->thread;
+       unsigned long *bp = t->io_bitmap_ptr;
 
-       if (me->thread.io_bitmap_ptr) {
+       if (bp) {
                struct tss_struct *tss = &per_cpu(init_tss, get_cpu());
 
-               kfree(t->io_bitmap_ptr);
                t->io_bitmap_ptr = NULL;
                clear_thread_flag(TIF_IO_BITMAP);
                /*
@@ -78,6 +78,7 @@ void exit_thread(void)
                memset(tss->io_bitmap, 0xff, t->io_bitmap_max);
                t->io_bitmap_max = 0;
                put_cpu();
+               kfree(bp);
        }
 
        ds_exit_thread(current);