Changeset 1ace9ea in mainline
- Timestamp:
- 2006-04-12T17:05:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a6d4ceb
- Parents:
- 9a8d91b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/mm/as.c
r9a8d91b r1ace9ea 225 225 } 226 226 227 ASSERT(!(area->flags & AS_AREA_DEVICE)); 228 227 229 page_table_lock(AS, false); 228 230 … … 443 445 area = find_area_and_lock(as, address); 444 446 if (!area) { 447 spinlock_unlock(&as->lock); 448 interrupts_restore(ipl); 449 return (__address) -1; 450 } 451 452 if (area->flags & AS_AREA_DEVICE) { 453 /* 454 * Remapping of address space areas associated 455 * with memory mapped devices is not supported. 456 */ 457 spinlock_unlock(&area->lock); 445 458 spinlock_unlock(&as->lock); 446 459 interrupts_restore(ipl);
Note:
See TracChangeset
for help on using the changeset viewer.