Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Sep 2023 13:13:58 GMT
From:      Doug Moore <dougm@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: b24ed9c52dd2 - main - powerpc_pmap: include proper vm_radix file
Message-ID:  <202309121313.38CDDwGa020519@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by dougm:

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

commit b24ed9c52dd296730c23d48e95c5a53ef67b402f
Author:     Doug Moore <dougm@FreeBSD.org>
AuthorDate: 2023-09-12 13:10:15 +0000
Commit:     Doug Moore <dougm@FreeBSD.org>
CommitDate: 2023-09-12 13:10:15 +0000

    powerpc_pmap: include proper vm_radix file
    
    Like the pmap.h files for amd64, arm64, i386 and riscv, the one for powerpc
    should #include vm/_vm_radix.h, not vm/vm_radix.h, to get a definition for
    struct vm_radix.
    
    Fixes a problem introduced with 429c871ddddac4bbf6abf1eb9e2e6603f87c2ef5.
---
 sys/powerpc/include/pmap.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/powerpc/include/pmap.h b/sys/powerpc/include/pmap.h
index 642a990bb49b..e300f3750698 100644
--- a/sys/powerpc/include/pmap.h
+++ b/sys/powerpc/include/pmap.h
@@ -75,7 +75,7 @@
 #include <machine/tlb.h>
 #include <machine/vmparam.h>
 #ifdef __powerpc64__
-#include <vm/vm_radix.h>
+#include <vm/_vm_radix.h>
 #endif
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202309121313.38CDDwGa020519>