Date: Wed, 3 May 2023 14:33:03 GMT From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 22028f12f1ed - stable/12 - powerpc: fix another pmap related function to return the correct type Message-ID: <202305031433.343EX3j9075272@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by dim: URL: https://cgit.FreeBSD.org/src/commit/?id=22028f12f1ed39cf556dc477f6b34989dc5e176d commit 22028f12f1ed39cf556dc477f6b34989dc5e176d Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2023-05-03 14:31:11 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> 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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305031433.343EX3j9075272>