vmbase: Move handle_*_fault() to crate::exceptions
Move the functions out of vmbase::memory::shared.
Fix the visibility of the corresponding MemoryTracker methods.
Note: no functional change intended.
Test: m pvmfw_bin rialto_bin
Bug: 377276983
Change-Id: I56f273e5ca5d8d544248aa4c695c9d535b6c8b0a
diff --git a/guest/rialto/src/exceptions.rs b/guest/rialto/src/exceptions.rs
index e87e0d3..8899796 100644
--- a/guest/rialto/src/exceptions.rs
+++ b/guest/rialto/src/exceptions.rs
@@ -16,9 +16,9 @@
use vmbase::{
eprintln,
+ exceptions::{handle_permission_fault, handle_translation_fault},
exceptions::{ArmException, Esr, HandleExceptionError},
logger,
- memory::{handle_permission_fault, handle_translation_fault},
power::reboot,
read_sysreg,
};