The branch stable/12 has been updated by dim:

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

commit 22028f12f1ed39cf556dc477f6b34989dc5e176d
Author:     Dimitry Andric <[email protected]>
AuthorDate: 2023-05-03 14:31:11 +0000
Commit:     Dimitry Andric <[email protected]>
CommitDate: 2023-05-03 14:31:11 +0000

    powerpc: fix another pmap related function to return the correct type
    
    Missed one prototype while cherry-picking commit d14260188752.
    
    Fixes:          e9e1f2a88e4b
---
 sys/powerpc/powerpc/pmap_dispatch.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/powerpc/powerpc/pmap_dispatch.c 
b/sys/powerpc/powerpc/pmap_dispatch.c
index 424162a50444..5b6b166e656b 100644
--- a/sys/powerpc/powerpc/pmap_dispatch.c
+++ b/sys/powerpc/powerpc/pmap_dispatch.c
@@ -224,7 +224,7 @@ pmap_is_referenced(vm_page_t m)
        return (MMU_IS_REFERENCED(mmu_obj, m));
 }
 
-boolean_t
+int
 pmap_ts_referenced(vm_page_t m)
 {
 

Reply via email to