From a0a3f77b6656481a41e2166632e077c0e4855c79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Thu, 12 Sep 2024 10:44:40 +0200 Subject: [PATCH] fix(x86_64): downgrade log level of page unmap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- src/arch/x86_64/mm/paging.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/x86_64/mm/paging.rs b/src/arch/x86_64/mm/paging.rs index b55ba41464..d8947df827 100644 --- a/src/arch/x86_64/mm/paging.rs +++ b/src/arch/x86_64/mm/paging.rs @@ -255,7 +255,7 @@ where // FIXME: Some sentinel pages around stacks are supposed to be unmapped. // We should handle this case there instead of here. Err(UnmapError::PageNotMapped) => { - info!("Tried to unmap {page:?}, which was not mapped.") + debug!("Tried to unmap {page:?}, which was not mapped.") } Err(err) => panic!("{err:?}"), }