Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/synch/futex.c

    r38dc82d r496232e  
    291291        spinlock_lock(&futex_ht_lock);
    292292
    293         bool success = false;
    294 
    295         pte_t t;
    296         bool found;
    297 
    298         found = page_mapping_find(AS, ALIGN_DOWN(uaddr, PAGE_SIZE), true, &t);
    299         if (found && PTE_VALID(&t) && PTE_PRESENT(&t)) {
    300                 success = true;
    301                 *paddr = PTE_GET_FRAME(&t) +
    302                     (uaddr - ALIGN_DOWN(uaddr, PAGE_SIZE));
     293        bool found = false;
     294        pte_t *t = page_mapping_find(AS, ALIGN_DOWN(uaddr, PAGE_SIZE), true);
     295       
     296        if (t && PTE_VALID(t) && PTE_PRESENT(t)) {
     297                found = true;
     298                *paddr = PTE_GET_FRAME(t) + (uaddr - ALIGN_DOWN(uaddr, PAGE_SIZE));
    303299        }
    304300       
     
    306302        page_table_unlock(AS, false);
    307303       
    308         return success;
     304        return found;
    309305}
    310306
Note: See TracChangeset for help on using the changeset viewer.