Skip to content

Commit

Permalink
Merge pull request #99 from toitware/bring-cache-fix
Browse files Browse the repository at this point in the history
Fix cache sync regression
  • Loading branch information
kasperl authored Dec 6, 2024
2 parents e0a7996 + 9ae6786 commit 102006e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/esp_mm/esp_mmu_map.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ IRAM_ATTR esp_err_t esp_mmu_paddr_find_caps(const esp_paddr_t paddr, mmu_mem_cap
}

//now we are only traversing the actual dynamically allocated blocks, dummy_head and dummy_tail are excluded already
if (mem_block->paddr_start == paddr) {
if (mem_block->paddr_start <= paddr && paddr < mem_block->paddr_end) {
found = true;
found_block = mem_block;
break;
Expand Down

0 comments on commit 102006e

Please sign in to comment.