-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syscalls physical memory #201
Syscalls physical memory #201
Conversation
QueryPhysicalAddress returns the offset in its PhysicalMemRegion.
Kernel mappings must be physically continuous.Virtual memory is a great thing, it can make a fragmented mapping appear contiguous from the userspace. But unfortunately Horizon does not take advantage of this feature, and allocates its mapping as a single Physical Memory Region. This comment was generated by todo based on a
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm 👍
Cargo test fails. |
Removed on_fixed_mmio_rounds_unaligned test, as `on_fixed_mmio` no longer rounds.
mem
module