Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4 → Rev 5

/SPARTAN/trunk/src/mm/vm.c
29,6 → 29,7
#include <mm/vm.h>
#include <mm/page.h>
#include <mm/frame.h>
#include <mm/tlb.h>
#include <arch/mm/page.h>
#include <arch/types.h>
#include <typedefs.h>
142,7 → 143,7
 
for (i=0; i<a->size; i++)
map_page_to_frame(a->address + i*PAGE_SIZE, 0, PAGE_NOT_PRESENT, 0);
spinlock_unlock(&a->lock);
cpu_priority_restore(pri);
}
168,6 → 169,9
pri_t pri;
pri = cpu_priority_high();
 
tlb_shutdown_start();
 
spinlock_lock(&m->lock);
 
for(l = m->vm_area_head.next; l != &m->vm_area_head; l = l->next)
174,5 → 178,9
vm_area_unmap(list_get_instance(l, vm_area_t, link));
 
spinlock_unlock(&m->lock);
 
tlb_invalidate(0);
tlb_shutdown_finalize();
 
cpu_priority_restore(pri);
}