In vm_page_alloc(), fuse two if statements that are conditioned on the same

expression.
This commit is contained in:
Alan Cox 2003-01-11 20:07:17 +00:00
parent 654e22e7bb
commit b5dc830507
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109114

View File

@ -757,7 +757,8 @@ vm_page_alloc(vm_object_t object, vm_pindex_t pindex, int req)
vm_pindex_t color;
int page_req, s;
#ifdef INVARIANTS
page_req = req & VM_ALLOC_CLASS_MASK;
if ((req & VM_ALLOC_NOOBJ) == 0) {
KASSERT(object != NULL,
("vm_page_alloc: NULL object."));
@ -765,14 +766,8 @@ vm_page_alloc(vm_object_t object, vm_pindex_t pindex, int req)
MA_OWNED);
KASSERT(!vm_page_lookup(object, pindex),
("vm_page_alloc: page already allocated"));
}
#endif
page_req = req & VM_ALLOC_CLASS_MASK;
if ((req & VM_ALLOC_NOOBJ) == 0)
color = pindex + object->pg_color;
else
} else
color = pindex;
/*