Initialize all members of vm_page::md_page for armv4/5 systems. This fixes

a hang in SI_SUB_KMEM sysinit, and is apparently required after r323290.
Inspired by the commit message for r323676.

Reported by:	andreast@
This commit is contained in:
ian 2018-02-27 02:11:23 +00:00
parent ebd328aad6
commit ee91b89230

View File

@ -1725,6 +1725,8 @@ pmap_page_init(vm_page_t m)
TAILQ_INIT(&m->md.pv_list);
m->md.pv_memattr = VM_MEMATTR_DEFAULT;
m->md.pvh_attrs = 0;
m->md.pv_kva = 0;
}
/*