Skip to content
Snippets Groups Projects
Verified Commit 4d2cd6ce authored by Jacob Lorentzon's avatar Jacob Lorentzon :speech_balloon:
Browse files

Remove redundant log msg.

parent a4a84775
No related branches found
No related tags found
1 merge request!238Demand paging
......@@ -177,9 +177,7 @@ pub fn page_fault_handler(stack: &mut InterruptStack, code: PageFaultError, faul
match try_correcting_page_tables(faulting_page, mode) {
Ok(()) => return Ok(()),
Err(PfError::Oom) => todo!("oom"),
Err(PfError::Segv | PfError::RecursionLimitExceeded) => {
log::error!("Failed to correct page tables");
},
Err(PfError::Segv | PfError::RecursionLimitExceeded) => (),
Err(PfError::NonfatalInternalError) => todo!(),
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment