Changeset 513857c in mainline


Ignore:
Timestamp:
2025-02-20T21:11:25Z (32 hours ago)
Author:
GitHub <noreply@…>
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)
Message:

Merge e43acd38c0225c4fac18ac08d9da30ca442ef906 into 32254d6ae36aa180fa53338ca60684a9c87d7947

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/asm.S

    r32254d6 r513857c  
    7373
    7474        0:
    75                 ret                 /* return MEMCPY_SRC, success */
     75                ret                 /* return MEMCPY_DST, success */
    7676FUNCTION_END(memcpy_from_uspace)
    7777FUNCTION_END(memcpy_to_uspace)
  • uspace/app/tester/mm/mapping1.c

    r32254d6 r513857c  
    7373        for (i = 0; i < page_count; i++) {
    7474                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);
    7677                if (rc != expected_rc) {
    7778                        TPRINTF("as_get_physical_mapping() = %s != %s\n",
Note: See TracChangeset for help on using the changeset viewer.