git: 10db91ecec98 - main - vm_radix: add a missing paren
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 12 Sep 2023 09:21:30 UTC
The branch main has been updated by dougm:
URL: https://cgit.FreeBSD.org/src/commit/?id=10db91ecec98b151046c8c5dce63b2995910fb1b
commit 10db91ecec98b151046c8c5dce63b2995910fb1b
Author: Doug Moore <dougm@FreeBSD.org>
AuthorDate: 2023-09-12 09:19:51 +0000
Commit: Doug Moore <dougm@FreeBSD.org>
CommitDate: 2023-09-12 09:19:51 +0000
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 57c39d8d89d7..cfc5a82eacc8 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