pub trait Translate {
// Required method
fn translate(&self, addr: VirtAddr) -> TranslateResult;
// Provided method
fn translate_addr(&self, addr: VirtAddr) -> Option<PhysAddr> { ... }
}
Expand description
Provides methods for translating virtual addresses.
Required Methods§
Sourcefn translate(&self, addr: VirtAddr) -> TranslateResult
fn translate(&self, addr: VirtAddr) -> TranslateResult
Return the frame that the given virtual address is mapped to and the offset within that frame.
If the given address has a valid mapping, the mapped frame and the offset within that frame is returned. Otherwise an error value is returned.
This function works with huge pages of all sizes.
Provided Methods§
Sourcefn translate_addr(&self, addr: VirtAddr) -> Option<PhysAddr>
fn translate_addr(&self, addr: VirtAddr) -> Option<PhysAddr>
Translates the given virtual address to the physical address that it maps to.
Returns None
if there is no valid mapping for the given address.
This is a convenience method. For more information about a mapping see the
translate
method.