Changeset 513857c in mainline for uspace/app/tester/mm/mapping1.c
- Timestamp:
- 2025-02-20T21:11:25Z (42 hours ago)
- Parents:
- 32254d6 (diff), e43acd3 (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. - git-author:
- Roman <40754203+BohdanQQ@…> (2025-02-20 21:11:25)
- git-committer:
- GitHub <noreply@…> (2025-02-20 21:11:25)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/mm/mapping1.c
r32254d6 r513857c 73 73 for (i = 0; i < page_count; i++) { 74 74 void *page_start = ((char *) area) + PAGE_SIZE * i; 75 errno_t rc = as_get_physical_mapping(page_start, NULL); 75 uintptr_t phys_dummy; 76 errno_t rc = as_get_physical_mapping(page_start, &phys_dummy); 76 77 if (rc != expected_rc) { 77 78 TPRINTF("as_get_physical_mapping() = %s != %s\n",
Note:
See TracChangeset
for help on using the changeset viewer.