sel4: change a error message into warning

This condition is non-fatal in the most cases, so leave it as a
diagnostic message.
This commit is contained in:
Alexander Boettcher 2017-11-23 12:04:24 +01:00 committed by Christian Helmuth
parent 64c8b06377
commit 4761826843

View File

@ -386,8 +386,9 @@ class Genode::Vm_space
if (!_map_frame(from_phys + offset, to_virt + offset,
cacheability, writable, executable,
flush_support))
error("mapping failed ", Hex(from_phys + offset),
" -> ", Hex(to_virt + offset));
warning("mapping failed ", Hex(from_phys + offset),
" -> ", Hex(to_virt + offset), " ",
!flush_support ? "core" : "");
}
}