vm_reserv_alloc_contig and vm_reserv_alloc_page both have code to determine whether a new reservation will fit between the predecessor and successor. Extract this code into a separate function rather than having it appear twice. Optimize slightly to avoid checking object size limit when there is a successor, and to avoid checking the rightcap at all when the size to be allocated is a multiple of reservation size.
Details
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
sys/vm/vm_reserv.c | ||
---|---|---|
589 | If msucc != NULL, then rightcap is clamped to either msucc->pindex or rv->pindex, both of which are less than object->size. |
sys/vm/vm_reserv.c | ||
---|---|---|
555 | The return value of this function doesn't directly answer this question, so I'd explain here what the value represents. | |
560 | Why add an explicit inline annotation? | |
579 | Suppose mpred == NULL and minpages is a multiple of VM_LEVEL_0_NPAGES. This check means that we won't check the successor, but I can't see how that's correct. To give an example, suppose we're allocating 2*VM_LEVEL_0_NPAGES pages starting at pindex 0. Suppose msucc->pindex == VM_LEVEL_0_NPAGES. We can thus only allocate one reservation, so should return VM_LEVEL_0_NPAGES. |
sys/vm/vm_reserv.c | ||
---|---|---|
560 | So the initial computation of allocpages can be done at compile time when the minpages parameter is 1. But it's not that important to me. | |
579 | Consider the current code for the scenario you describe, where in vm_reserv_alloc_contig, where minpages is a multiple of VM_LEVEL_0_NPAGES. Then minpages == maxpages, and if the msucc is checked and first + maxpages exceeds rightcap, minpages is assigned to allocpages, which does not fix the problem. I started drafting an email a few nights ago about how I thought I'd found a bug. But then I thought about it some more. This function assumes that minpages can safely be allocated. Before this function is called, somebody determined that pages from pindex to pindex+npages-1 don't currently exist. So, when minpages is a multiple of VM_LEVEL_0_NPAGES, we know that the rightcap limit won't be violated, and there's no need to check the successor. |
The return value of this function doesn't directly answer this question, so I'd explain here what the value represents.