From 10db91ecec98b151046c8c5dce63b2995910fb1b Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 12 Sep 2023 04:19:51 -0500 Subject: [PATCH] vm_radix: add a missing paren 429c871ddddac4bbf6abf1eb9e2e6603f87c2ef5 left parens unbalanced in a powerpc case that my testing missed. Restore balance. Reported by: jenkins --- sys/vm/vm_radix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/vm/vm_radix.c b/sys/vm/vm_radix.c index 57c39d8d89d..cfc5a82eacc 100644 --- a/sys/vm/vm_radix.c +++ b/sys/vm/vm_radix.c @@ -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