vm_radix: add a missing paren

429c871ddd left parens unbalanced in a
powerpc case that my testing missed.  Restore balance.

Reported by:	jenkins
This commit is contained in:
Doug Moore 2023-09-12 04:19:51 -05:00
parent 429c871ddd
commit 10db91ecec
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ vm_radix_reserve_kva(void)
*/
if (!uma_zone_reserve_kva(vm_radix_node_zone,
((vm_paddr_t)vm_cnt.v_page_count * PAGE_SIZE) / (PAGE_SIZE +
pctrie_node_size()))
pctrie_node_size())))
panic("%s: unable to reserve KVA", __func__);
}
#endif