Changes in / [a7d6185:475dc3e] in mainline


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/ia64.c

    ra7d6185 r475dc3e  
    144144#endif
    145145#ifdef MACHINE_i460GX
    146         platform = "i460GX";
     146        platform = "pc";
    147147#endif
    148148        sysinfo_set_item_data("platform", NULL, (void *) platform,
  • kernel/generic/src/mm/page.c

    ra7d6185 r475dc3e  
    168168int page_find_mapping(uintptr_t virt, void **phys)
    169169{
    170         mutex_lock(&AS->lock);
     170        page_table_lock(AS, true);
    171171       
    172172        pte_t *pte = page_mapping_find(AS, virt, false);
    173173        if ((!PTE_VALID(pte)) || (!PTE_PRESENT(pte))) {
    174                 mutex_unlock(&AS->lock);
     174                page_table_unlock(AS, true);
    175175                return ENOENT;
    176176        }
     
    179179            (virt - ALIGN_DOWN(virt, PAGE_SIZE));
    180180       
    181         mutex_unlock(&AS->lock);
     181        page_table_unlock(AS, true);
    182182       
    183183        return EOK;
  • uspace/lib/c/arch/ia64/include/ddi.h

    ra7d6185 r475dc3e  
    134134        asm volatile ("mf\n" ::: "memory");
    135135
    136         if (port < (ioport32_t *) port) {
     136        if (port < (ioport32_t *) IO_SPACE_BOUNDARY) {
    137137                uintptr_t prt = (uintptr_t) port;
    138138
Note: See TracChangeset for help on using the changeset viewer.