diff --git a/crate/memory/src/cow.rs b/crate/memory/src/cow.rs index aa77c1dc..1325d331 100644 --- a/crate/memory/src/cow.rs +++ b/crate/memory/src/cow.rs @@ -104,15 +104,15 @@ impl DerefMut for CowExt { /// A map contains reference count for shared frame #[derive(Default)] -struct FrameRcMap(BTreeMap); +struct FrameRcMap(BTreeMap); type Frame = usize; impl FrameRcMap { - fn read_count(&mut self, frame: &Frame) -> u8 { + fn read_count(&mut self, frame: &Frame) -> u16 { self.0.get(frame).unwrap_or(&(0, 0)).0 } - fn write_count(&mut self, frame: &Frame) -> u8 { + fn write_count(&mut self, frame: &Frame) -> u16 { self.0.get(frame).unwrap_or(&(0, 0)).1 } fn read_increase(&mut self, frame: &Frame) { diff --git a/crate/memory/src/lib.rs b/crate/memory/src/lib.rs index 68e0ba3e..a524f076 100644 --- a/crate/memory/src/lib.rs +++ b/crate/memory/src/lib.rs @@ -11,8 +11,6 @@ extern crate alloc; extern crate std; pub mod paging; -// FIXME: LLVM error on riscv32 -#[cfg(target_arch = "x86_64")] pub mod cow; pub mod swap; pub mod memory_set;