QuanweiZhou

Results 6 issues of QuanweiZhou

``` # uname -a Linux *** 5.15.0-1014-azure #17~20.04.1-Ubuntu SMP Thu Jun 23 20:01:51 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux #ctr image pull docker.io/library/nginx:1.15-alpine #ctr run --runtime=io.containerd.kata.v2 -d docker.io/library/nginx:1.15-alpine test-container sh...

bug
needs-review
runtime-rs

To support other hypervisor https://github.com/kata-containers/kata-containers/pull/4493#discussion_r917911476. - [ ] ACRN: #5270 - [ ] Cloud Hypervisor: #6263 - [ ] Firecracker: #5268 - [ ] QEMU: #5243

high-priority
feature
needs-review
area/QEMU
area/cloud-hypervisor
area/firecracker
runtime-rs

add a config for wait_vmm https://github.com/kata-containers/kata-containers/pull/4493#discussion_r918494881

enhancement
needs-review
runtime-rs

Example ``` use protobuf::SpecialFields; #[derive(Debug)] struct Test { v1: String, v2: String, special_fields: SpecialFields, } fn main() { println!( "Test: {:?}", Test { v1: "v1".to_string(), v2: "v2".to_string(), special_fields: SpecialFields::new(), }...