We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c9baa7 commit f28657cCopy full SHA for f28657c
modules/axmm/src/aspace.rs
@@ -289,7 +289,10 @@ impl AddrSpace {
289
match self.areas.find(vaddr) {
290
Some(_) => {
291
self.pt.unmap(vaddr).map(|_| true).unwrap_or_else(|e| {
292
- panic!("FORCE UNMAP PAGE FAILED(PAGE TABLE FAILED) {:?}: {:#x}!", e, vaddr)
+ panic!(
293
+ "FORCE UNMAP PAGE FAILED(PAGE TABLE FAILED) {:?}: {:#x}!",
294
+ e, vaddr
295
+ )
296
});
297
}
298
_ => panic!("FORCE UNMAP PAGE FAILED(NOT FOUND AREA): {:#x}!", vaddr),
0 commit comments