Changeset 6188fee in mainline
- Timestamp:
- 2023-02-26T11:24:51Z (21 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- deed510
- Parents:
- 65f3117
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/mm/frame.c
r65f3117 r6188fee 111 111 if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE, 112 112 KA2PA(config.base), config.kernel_size)) 113 return false; 114 115 /* Boot allocations */ 116 if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE, 117 KA2PA(ballocs.base), ballocs.size)) 113 118 return false; 114 119 -
kernel/generic/src/mm/frame.c
r65f3117 r6188fee 752 752 continue; 753 753 754 if (overlaps(addr, PFN2ADDR(confcount), 755 KA2PA(ballocs.base), ballocs.size)) 756 continue; 757 754 758 bool overlap = false; 755 759 for (size_t i = 0; i < init.cnt; i++) {
Note:
See TracChangeset
for help on using the changeset viewer.