Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1953 → Rev 1954

/trunk/kernel/generic/src/mm/as.c
192,7 → 192,7
 
/*
* Destroy address space areas of the address space.
* The B+tee must be walked carefully because it is
* The B+tree must be walked carefully because it is
* also being destroyed.
*/
for (cond = true; cond; ) {
416,7 → 416,7
/*
* Finish TLB shootdown sequence.
*/
tlb_invalidate_pages(AS->asid, area->base + pages*PAGE_SIZE, area->pages - pages);
tlb_invalidate_pages(as->asid, area->base + pages*PAGE_SIZE, area->pages - pages);
tlb_shootdown_finalize();
/*
609,7 → 609,7
 
/*
* Now we are committed to sharing the area.
* First prepare the area for sharing.
* First, prepare the area for sharing.
* Then it will be safe to unlock it.
*/
sh_info = src_area->sh_info;