Changeset be62ebc in mainline
- Timestamp:
- 2025-02-24T11:11:27Z (22 hours ago)
- Branches:
- master
- Children:
- d231a54
- Parents:
- 9faba42
- git-author:
- Roman <40754203+BohdanQQ@…> (2025-02-24 11:11:27)
- git-committer:
- GitHub <noreply@…> (2025-02-24 11:11:27)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/asm.S
r9faba42 rbe62ebc 73 73 74 74 0: 75 ret /* return MEMCPY_ SRC, success */75 ret /* return MEMCPY_DST, success */ 76 76 FUNCTION_END(memcpy_from_uspace) 77 77 FUNCTION_END(memcpy_to_uspace) -
uspace/app/tester/mm/mapping1.c
r9faba42 rbe62ebc 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.