Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1467 → Rev 1468

/kernel/trunk/genarch/src/mm/as_pt.c
44,6 → 44,7
#include <arch.h>
 
static pte_t *ptl0_create(int flags);
static void ptl0_destroy(pte_t *page_table);
 
static void pt_lock(as_t *as, bool lock);
static void pt_unlock(as_t *as, bool unlock);
50,6 → 51,7
 
as_operations_t as_pt_operations = {
.page_table_create = ptl0_create,
.page_table_destroy = ptl0_destroy,
.page_table_lock = pt_lock,
.page_table_unlock = pt_unlock
};
94,6 → 96,17
return (pte_t *) KA2PA((__address) dst_ptl0);
}
 
/** Destroy page table.
*
* Destroy PTL0, other levels are expected to be already deallocated.
*
* @param page_table Physical address of PTL0.
*/
void ptl0_destroy(pte_t *page_table)
{
frame_free(ADDR2PFN((__address) page_table));
}
 
/** Lock page tables.
*
* Lock only the address space.