Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/mm/page.c

    r235e6c7 r97bdb4a  
    108108 * using flags. Allocate and setup any missing page tables.
    109109 *
    110  * @param as    Address space to which page belongs.
     110 * @param as    Address space to wich page belongs.
    111111 * @param page  Virtual address of the page to be mapped.
    112112 * @param frame Physical address of memory frame to which the mapping is
     
    135135 * this call visible.
    136136 *
    137  * @param as   Address space to which page belongs.
     137 * @param as   Address space to wich page belongs.
    138138 * @param page Virtual address of the page to be demapped.
    139139 *
     
    152152}
    153153
    154 /** Find mapping for virtual page.
     154/** Find mapping for virtual page
    155155 *
    156  * @param as     Address space to which page belongs.
    157  * @param page   Virtual page.
    158  * @param nolock True if the page tables need not be locked.
     156 * Find mapping for virtual page.
     157 *
     158 * @param as   Address space to wich page belongs.
     159 * @param page Virtual page.
    159160 *
    160161 * @return NULL if there is no such mapping; requested mapping
     
    162163 *
    163164 */
    164 NO_TRACE pte_t *page_mapping_find(as_t *as, uintptr_t page, bool nolock)
     165NO_TRACE pte_t *page_mapping_find(as_t *as, uintptr_t page)
    165166{
    166         ASSERT(nolock || page_table_locked(as));
     167        ASSERT(page_table_locked(as));
    167168       
    168169        ASSERT(page_mapping_operations);
    169170        ASSERT(page_mapping_operations->mapping_find);
    170171       
    171         return page_mapping_operations->mapping_find(as, page, nolock);
     172        return page_mapping_operations->mapping_find(as, page);
    172173}
    173174
Note: See TracChangeset for help on using the changeset viewer.