Changes in uspace/app/tester/mm/mapping1.c [c8751452:b93d637] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/mm/mapping1.c
rc8751452 rb93d637 43 43 TPRINTF("Creating AS area...\n"); 44 44 if (as_area_create(result, size, 45 AS_AREA_READ | AS_AREA_WRITE ) != result) {45 AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE) != result) { 46 46 return NULL; 47 47 } … … 71 71 int i; 72 72 for (i = 0; i < page_count; i++) { 73 void *page_start = ((char *) 73 void *page_start = ((char *)area) + PAGE_SIZE * i; 74 74 int rc = as_get_physical_mapping(page_start, NULL); 75 75 if (rc != expected_rc) {
Note:
See TracChangeset
for help on using the changeset viewer.