aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/kernel/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/kernel/process.c')
-rw-r--r--arch/i386/kernel/process.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/i386/kernel/process.c b/arch/i386/kernel/process.c
index 7e8e129b3d7d..5fb9524c6f4b 100644
--- a/arch/i386/kernel/process.c
+++ b/arch/i386/kernel/process.c
@@ -375,7 +375,7 @@ void exit_thread(void)
375 t->io_bitmap_max = 0; 375 t->io_bitmap_max = 0;
376 tss->io_bitmap_owner = NULL; 376 tss->io_bitmap_owner = NULL;
377 tss->io_bitmap_max = 0; 377 tss->io_bitmap_max = 0;
378 tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET; 378 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
379 put_cpu(); 379 put_cpu();
380 } 380 }
381} 381}
@@ -554,7 +554,7 @@ static noinline void __switch_to_xtra(struct task_struct *next_p,
554 * Disable the bitmap via an invalid offset. We still cache 554 * Disable the bitmap via an invalid offset. We still cache
555 * the previous bitmap owner and the IO bitmap contents: 555 * the previous bitmap owner and the IO bitmap contents:
556 */ 556 */
557 tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET; 557 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET;
558 return; 558 return;
559 } 559 }
560 560
@@ -564,7 +564,7 @@ static noinline void __switch_to_xtra(struct task_struct *next_p,
564 * matches the next task, we dont have to do anything but 564 * matches the next task, we dont have to do anything but
565 * to set a valid offset in the TSS: 565 * to set a valid offset in the TSS:
566 */ 566 */
567 tss->io_bitmap_base = IO_BITMAP_OFFSET; 567 tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET;
568 return; 568 return;
569 } 569 }
570 /* 570 /*
@@ -576,7 +576,7 @@ static noinline void __switch_to_xtra(struct task_struct *next_p,
576 * redundant copies when the currently switched task does not 576 * redundant copies when the currently switched task does not
577 * perform any I/O during its timeslice. 577 * perform any I/O during its timeslice.
578 */ 578 */
579 tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY; 579 tss->x86_tss.io_bitmap_base = INVALID_IO_BITMAP_OFFSET_LAZY;
580} 580}
581 581
582/* 582/*