git: b66e75bffc22 - main - kcov: Fix the build

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Sat, 19 Apr 2025 22:42:09 UTC
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=b66e75bffc227b7f649ce9f7c38bdc2511bca048

commit b66e75bffc227b7f649ce9f7c38bdc2511bca048
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2025-04-19 22:36:36 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2025-04-19 22:36:36 +0000

    kcov: Fix the build
    
    Fixes:          4568f5a286a2 ("kern_kcov: replace vm_page_next() with iterator")
    Reported by:    syzbot+b41aad31e5897b2f3401@syzkaller.appspotmail.com
---
 sys/kern/kern_kcov.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/kern/kern_kcov.c b/sys/kern/kern_kcov.c
index 1c1d924b8b79..c0f3d9dca6c6 100644
--- a/sys/kern/kern_kcov.c
+++ b/sys/kern/kern_kcov.c
@@ -60,6 +60,7 @@
 #include <vm/vm_page.h>
 #include <vm/vm_pager.h>
 #include <vm/vm_param.h>
+#include <vm/vm_radix.h>
 
 MALLOC_DEFINE(M_KCOV_INFO, "kcovinfo", "KCOV info type");