diff --git a/src/policy/copyspace.rs b/src/policy/copyspace.rs index 1dcb2ce813..b377db5e96 100644 --- a/src/policy/copyspace.rs +++ b/src/policy/copyspace.rs @@ -197,7 +197,9 @@ impl CopySpace { ); } } else { - unimplemented!(); + for (start, size) in self.pr.iterate_allocated_regions() { + crate::util::metadata::vo_bit::bzero_vo_bit(start, size); + } } }