Changeset aa85487 in mainline for kernel/generic/src/mm/as.c
- Timestamp:
- 2010-03-07T15:11:56Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aadf01e
- Parents:
- 2e99277 (diff), 137691a (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/mm/as.c
r2e99277 raa85487 784 784 { 785 785 as_area_t *area; 786 uintptr_t base;787 786 link_t *cur; 788 787 ipl_t ipl; … … 813 812 return ENOTSUP; 814 813 } 815 816 base = area->base;817 814 818 815 /* … … 952 949 if (!THREAD) 953 950 return AS_PF_FAULT; 954 955 ASSERT(AS); 956 951 952 if (!AS) 953 return AS_PF_FAULT; 954 957 955 mutex_lock(&AS->lock); 958 area = find_area_and_lock(AS, page); 956 area = find_area_and_lock(AS, page); 959 957 if (!area) { 960 958 /*
Note:
See TracChangeset
for help on using the changeset viewer.