Page MenuHomeFreeBSD

vm_reserv: extract common gap-checking code
ClosedPublic

Authored by dougm on Sun, Mar 23, 5:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Mar 31, 4:02 AM
Unknown Object (File)
Sun, Mar 30, 7:02 PM
Unknown Object (File)
Fri, Mar 28, 10:06 PM
Unknown Object (File)
Wed, Mar 26, 3:42 PM
Unknown Object (File)
Mon, Mar 24, 3:23 AM
Subscribers

Details

Summary

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.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dougm requested review of this revision.Sun, Mar 23, 5:36 PM
dougm created this revision.
sys/vm/vm_reserv.c
589

Shouldn't rightcap also be clamped to object->size (for non-anonymous objects) in the msucc != NULL case?

742

I think this comment should be preserved.

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.

Add/restore some comments.

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.

dougm added inline comments.
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.

Seek to improve the function name and header comment.

Edit function header comment slightly.

dougm added a reviewer: alc.

Rename the function and de-inline it. Modify comments.

sys/vm/vm_reserv.c
557

This sentence refers to local variables, so would make more sense within the function body.

760–761
dougm marked an inline comment as done.

Update comments.

This revision is now accepted and ready to land.Mon, Mar 31, 1:13 AM
This revision was automatically updated to reflect the committed changes.