Changeset 475dc3e in mainline
- Timestamp:
- 2012-02-19T09:48:20Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1ebb66f
- Parents:
- a7d6185 (diff), ec8c622 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ia64.c
ra7d6185 r475dc3e 144 144 #endif 145 145 #ifdef MACHINE_i460GX 146 platform = " i460GX";146 platform = "pc"; 147 147 #endif 148 148 sysinfo_set_item_data("platform", NULL, (void *) platform, -
kernel/generic/src/mm/page.c
ra7d6185 r475dc3e 168 168 int page_find_mapping(uintptr_t virt, void **phys) 169 169 { 170 mutex_lock(&AS->lock);170 page_table_lock(AS, true); 171 171 172 172 pte_t *pte = page_mapping_find(AS, virt, false); 173 173 if ((!PTE_VALID(pte)) || (!PTE_PRESENT(pte))) { 174 mutex_unlock(&AS->lock);174 page_table_unlock(AS, true); 175 175 return ENOENT; 176 176 } … … 179 179 (virt - ALIGN_DOWN(virt, PAGE_SIZE)); 180 180 181 mutex_unlock(&AS->lock);181 page_table_unlock(AS, true); 182 182 183 183 return EOK; -
uspace/lib/c/arch/ia64/include/ddi.h
ra7d6185 r475dc3e 134 134 asm volatile ("mf\n" ::: "memory"); 135 135 136 if (port < (ioport32_t *) port) {136 if (port < (ioport32_t *) IO_SPACE_BOUNDARY) { 137 137 uintptr_t prt = (uintptr_t) port; 138 138
Note:
See TracChangeset
for help on using the changeset viewer.