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 Lepore 2018-02-27 02:11:23 +00:00
parent 731308d01d
commit 665c7f6f1e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=330050

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;
}
/*