From 15ce84164b6b58c0a7e6fd46533ee5bb9d238617 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Tue, 27 Jun 2023 15:27:37 +0200 Subject: [PATCH] Reminder that borrow does handle "lack of grant". --- src/context/memory.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/context/memory.rs b/src/context/memory.rs index c34d20f5..48cd9e27 100644 --- a/src/context/memory.rs +++ b/src/context/memory.rs @@ -653,6 +653,10 @@ impl Grant { } */ + // TODO: If grants are missing for certain ranges specified, fill with Provider::External + // grants anyway, which will in turn fill the host address space will zeroed grants. This + // is required before schemes can be safe. + let mut dst_grants = Vec::with_capacity(1); let src_span = PageSpan::new(src_base, page_count); -- GitLab