Changeset 9fa16b20 in mainline for arch/ia32/src/proc/scheduler.c


Ignore:
Timestamp:
2006-04-17T15:45:38Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
73e9b49
Parents:
97a7eff
Message:

Fix amd64 and ia32 management of I/O bitmap in before_task_runs_arch()
by treating the iomap array as a bitmap. Make use of the bitmap type
and functions added in previous commit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/proc/scheduler.c

    r97a7eff r9fa16b20  
    3636#include <arch/pm.h>
    3737#include <arch/asm.h>
     38#include <adt/bitmap.h>
    3839
    3940/** Perform ia32 specific tasks needed before the new task is run.
     
    4344void before_task_runs_arch(void)
    4445{
    45         size_t iomap_size;
     46        count_t bits;
    4647        ptr_16_32_t cpugdtr;
    4748        descriptor_t *gdt_p;
     
    5354        /* First, copy the I/O Permission Bitmap. */
    5455        spinlock_lock(&TASK->lock);
    55         iomap_size = TASK->arch.iomap_size;
    56         if (iomap_size) {
    57                 ASSERT(TASK->arch.iomap);
    58                 memcpy(CPU->arch.tss->iomap, TASK->arch.iomap, iomap_size);
    59                 CPU->arch.tss->iomap[iomap_size] = 0xff;        /* terminating byte */
     56        if ((bits = TASK->arch.iomap.bits)) {
     57                bitmap_t iomap;
     58
     59                ASSERT(TASK->arch.iomap.map);
     60                bitmap_initialize(&iomap, CPU->arch.tss->iomap, TSS_IOMAP_SIZE * 8);
     61                bitmap_copy(&iomap, &TASK->arch.iomap, TASK->arch.iomap.bits);
     62                /*
     63                 * It is safe to set the trailing four bits because of the extra
     64                 * convenience byte in TSS_IOMAP_SIZE.
     65                 */
     66                bitmap_set_range(&iomap, TASK->arch.iomap.bits, 4);
    6067        }
    61         spinlock_unlock(&TASK->lock);   
     68        spinlock_unlock(&TASK->lock);
    6269
    6370        /* Second, adjust TSS segment limit. */
    6471        gdtr_store(&cpugdtr);
    6572        gdt_p = (descriptor_t *) cpugdtr.base;
    66         gdt_setlimit(&gdt_p[TSS_DES], TSS_BASIC_SIZE + iomap_size - 1);
     73        gdt_setlimit(&gdt_p[TSS_DES], TSS_BASIC_SIZE + BITS2BYTES(bits) - 1);
    6774        gdtr_load(&cpugdtr);
    6875}
Note: See TracChangeset for help on using the changeset viewer.