diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-21 01:26:23 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-21 01:26:23 +0200 |
commit | ae689c5fe5ab12dd953b7e8ca92c434d6dd850a6 (patch) | |
tree | 57d409b2ae7f705afc5a1d1304002812260403d9 /vm | |
parent | f08e34e4ca33cd247d17421f98fbf6e3d96b79be (diff) | |
download | gnumach-ae689c5fe5ab12dd953b7e8ca92c434d6dd850a6.tar.gz gnumach-ae689c5fe5ab12dd953b7e8ca92c434d6dd850a6.tar.bz2 gnumach-ae689c5fe5ab12dd953b7e8ca92c434d6dd850a6.zip |
vm_allocate_contiguous: better handle pmax
In case pmax is inside a segment, we should avoid using it, and stay
with the previous segment, thus being sure to respect the caller's
constraints.
Diffstat (limited to 'vm')
-rw-r--r-- | vm/vm_user.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/vm/vm_user.c b/vm/vm_user.c index 18f79eda..f42c84bf 100644 --- a/vm/vm_user.c +++ b/vm/vm_user.c @@ -608,19 +608,23 @@ kern_return_t vm_allocate_contiguous( if (pmax > VM_PAGE_DMA_LIMIT) #ifdef VM_PAGE_DMA32_LIMIT #if VM_PAGE_DMA32_LIMIT < VM_PAGE_DIRECTMAP_LIMIT - selector = VM_PAGE_SEL_DMA32; + if (pmax <= VM_PAGE_DMA32_LIMIT) + selector = VM_PAGE_SEL_DMA32; if (pmax > VM_PAGE_DMA32_LIMIT) #endif #endif - selector = VM_PAGE_SEL_DIRECTMAP; + if (pmax <= VM_PAGE_DIRECTMAP_LIMIT) + selector = VM_PAGE_SEL_DIRECTMAP; if (pmax > VM_PAGE_DIRECTMAP_LIMIT) #ifdef VM_PAGE_DMA32_LIMIT #if VM_PAGE_DMA32_LIMIT > VM_PAGE_DIRECTMAP_LIMIT - selector = VM_PAGE_SEL_DMA32; + if (pmax <= VM_PAGE_DMA32_LIMIT) + selector = VM_PAGE_SEL_DMA32; if (pmax > VM_PAGE_DMA32_LIMIT) #endif #endif - selector = VM_PAGE_SEL_HIGHMEM; + if (pmax <= VM_PAGE_HIGHMEM_LIMIT) + selector = VM_PAGE_SEL_HIGHMEM; size = vm_page_round(size); |