Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1228 → Rev 1229

/kernel/trunk/genarch/src/mm/page_pt.c
49,8 → 49,8
 
/** Map page to frame using hierarchical page tables.
*
* Map virtual address 'page' to physical address 'frame'
* using 'flags'.
* Map virtual address @page to physical address @frame
* using @flags.
*
* The page table must be locked and interrupts must be disabled.
*
107,7 → 107,7
*
* The page table must be locked and interrupts must be disabled.
*
* @param as Address space to wich page belongs.
* @param as Address space to wich @page belongs.
* @param page Virtual address of the page to be demapped.
*/
void pt_mapping_remove(as_t *as, __address page)
227,7 → 227,7
*
* The page table must be locked and interrupts must be disabled.
*
* @param as Address space to which page belongs.
* @param as Address space to which @page belongs.
* @param page Virtual page.
*
* @return NULL if there is no such mapping; entry from PTL3 describing the mapping otherwise.
/kernel/trunk/genarch/src/mm/page_ht.c
154,12 → 154,12
 
/** Map page to frame using page hash table.
*
* Map virtual address 'page' to physical address 'frame'
* using 'flags'.
* Map virtual address @page to physical address @frame
* using @flags.
*
* The page table must be locked and interrupts must be disabled.
*
* @param as Address space to which page belongs.
* @param as Address space to which @page belongs.
* @param page Virtual address of the page to be mapped.
* @param frame Physical address of memory frame to which the mapping is done.
* @param flags Flags to be used for mapping.
190,7 → 190,7
 
/** Remove mapping of page from page hash table.
*
* Remove any mapping of 'page' within address space 'as'.
* Remove any mapping of @page within address space @as.
* TLB shootdown should follow in order to make effects of
* this call visible.
*
217,7 → 217,7
*
* The page table must be locked and interrupts must be disabled.
*
* @param as Address space to wich page belongs.
* @param as Address space to wich @page belongs.
* @param page Virtual page.
*
* @return NULL if there is no such mapping; requested mapping otherwise.