Page MenuHomeFreeBSD

Fix pmap_page_is_mapped() for arm64 and riscv.
ClosedPublic

Authored by markj on Sep 27 2019, 4:37 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, May 10, 8:02 PM
Unknown Object (File)
Fri, May 8, 7:50 PM
Unknown Object (File)
Wed, May 6, 6:38 AM
Unknown Object (File)
Wed, May 6, 12:14 AM
Unknown Object (File)
Sat, May 2, 11:52 AM
Unknown Object (File)
Fri, May 1, 9:58 PM
Unknown Object (File)
Thu, Apr 30, 7:12 PM
Unknown Object (File)
Thu, Apr 30, 12:47 AM
Subscribers

Details

Summary

To be correct, this function needs to look at 2MB mappings as well. I
just copied the implementation from amd64.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

alc added inline comments.
sys/arm64/include/pmap.h
170–171 ↗(On Diff #62653)

You need to replace this by the function declaration from amd64:

boolean_t pmap_page_is_mapped(vm_page_t m);

This revision is now accepted and ready to land.Sep 27 2019, 4:57 PM
This revision now requires review to proceed.Sep 27 2019, 5:24 PM

Here is a take-it-or-leave comment: Consider conversion from "boolean_t" to "bool".

This revision is now accepted and ready to land.Sep 27 2019, 9:24 PM