Remove unneeded initializations from vm_phys_init_page().

The page allocator always initializes the aflags and oflags fields.

Reviewed by:	alc, kib
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D13242
This commit is contained in:
markj 2017-11-26 19:16:45 +00:00
parent 6fd4821b43
commit 963bf8102f

View File

@ -742,7 +742,7 @@ vm_phys_init_page(vm_paddr_t pa)
m->wire_count = 0;
m->busy_lock = VPB_UNBUSIED;
m->hold_count = 0;
m->flags = m->aflags = m->oflags = 0;
m->flags = 0;
m->phys_addr = pa;
m->queue = PQ_NONE;
m->psind = 0;