[pvmfw][vmbase] Add constant PAGE_SIZE to vmbase
This cl adds a constant PAGE_SIZE of 4 KiB to vmbase and uses it
in pvmfw and rialto. Later it will be used as the page size in
the MemoryTracker for both pvmfw and rialto.
Bug: 284462758
Test: m pvmfw_img
Change-Id: I5b23f2571a3df81aa824f6f60e94b326fb1e225f
diff --git a/vmbase/src/memory/mod.rs b/vmbase/src/memory/mod.rs
index e5e0305..13f1af5 100644
--- a/vmbase/src/memory/mod.rs
+++ b/vmbase/src/memory/mod.rs
@@ -24,5 +24,5 @@
pub use shared::MemorySharer;
pub use util::{
flush, flushed_zeroize, min_dcache_line_size, page_4kb_of, phys_to_virt, virt_to_phys,
- SIZE_2MB, SIZE_4KB, SIZE_4MB,
+ PAGE_SIZE, SIZE_2MB, SIZE_4KB, SIZE_4MB,
};