uhyve
uhyve copied to clipboard
A specialized hypervisor for Hermit.
```console error: this implementation is unsound, as some fields in `Uhyve` are `!Send` --> src/linux/uhyve.rs:382:1 | 382 | unsafe impl Send for Uhyve {} | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D...
I think we don't have a test for multicore uhyve and that's something we should fix ;-)
Hello, Right now, it seems that uhyve is used to test unikernel builds, but I need a single instance virtualization application that is compiled with a unikernel. I am working...
This is not a bug report, just a collection of measurements I did so they won't get lost. Overall, executing the hello_world binary takes about 131ms with uhyve compiled for...
We should continue the discussion #68 here.
Uhyve should exit with a non-zero exitcode if the kernel panics. This is important for testing rusty-hermit with uhyve and **CI**, since I'm not a fan of parsing the output...
When using nested virtualization rusty-hermit currently panics when detecting the cpu frequency, since all methods fail. Uhyve should provide the CPU frequency even in a nested virtualization environment. This can...
Treating `hlt` like a shutdown is a nice hack, but might lead to problems. I think it's better to continue execution after the instruction.
Bumps the rust-vmm group with 1 update: [kvm-bindings](https://github.com/rust-vmm/kvm-bindings). Updates `kvm-bindings` from 0.8.2 to 0.9.0 Release notes Sourced from kvm-bindings's releases. kvm-bindings-v0.9.0 Changelog [0.9.0] Changed Replaced the v6.2 bindings of arm64,...
- Move x86_64-related paging code to src/arch/x86_64/paging - Tests: x86_64-related paging tests should use a guest_address that is not 0 - Tests: Move them in separate files, use appropriate 'use'...