/cloud-hypervisor/.github/workflows/ |
H A D | release.yaml | 2 on: [create, merge_group] 11 …if: (github.event_name == 'create' && github.event.ref_type == 'tag') || github.event_name == 'mer… 36 - name: Create release directory 38 github.event_name == 'create' && github.event.ref_type == 'tag' && 50 if: github.event_name == 'create' && github.event.ref_type == 'tag' 56 if: github.event_name == 'create' && github.event.ref_type == 'tag' 65 github.event_name == 'create' && github.event.ref_type == 'tag' && 73 - name: Create vendored source archive 75 github.event_name == 'create' && github.event.ref_type == 'tag' && 80 github.event_name == 'create' && github.event.ref_type == 'tag' && [all …]
|
/cloud-hypervisor/hypervisor/src/ |
H A D | vm.rs | 59 /// Create Vcpu error 61 #[error("Failed to create Vcpu")] 74 /// Create interrupt controller error 76 #[error("Failed to create interrupt controller")] 104 /// Create user memory error 106 #[error("Failed to create user memory")] 114 /// Create device error 144 /// Create passthrough device 146 #[error("Failed to create passthrough device")] 224 /// Create Vgic error [all …]
|
H A D | hypervisor.rs | 35 #[error("Failed to create the hypervisor")] 40 #[error("Failed to create Vm")] 110 /// Create a Vm using the underlying hypervisor 115 /// Create a Vm of a specific type using the underlying hypervisor 122 /// Create a Vm of a specific type using the underlying hypervisor, passing memory size
|
/cloud-hypervisor/vmm/src/ |
H A D | device_manager.rs | 153 /// Cannot create EventFd. 154 #[error("Cannot create EventFd")] 161 /// Cannot create vhost-user-net device 162 #[error("Cannot create vhost-user-net device")] 165 /// Cannot create virtio-blk device 166 #[error("Cannot create virtio-blk device")] 169 /// Cannot create virtio-net device 170 #[error("Cannot create virtio-net device")] 173 /// Cannot create virtio-console device 174 #[error("Cannot create virtio-console device")] [all …]
|
H A D | serial_manager.rs | 34 /// Cannot create epoll context. 54 /// Cannot create EventFd. 171 let epoll_fd = epoll::create(true).map_err(Error::Epoll)?; in new() 327 // Accept them, create a reader and a writer. in start_thread()
|
/cloud-hypervisor/scripts/ |
H A D | run_integration_tests_windows_aarch64.sh | 31 # Use device mapper to create a snapshot of the Windows image 34 dmsetup create windows-base --table "0 $img_blk_size linear $loop_device 0" 36 dmsetup create windows-snapshot-base --table "0 $img_blk_size snapshot-origin /dev/mapper/windows-b…
|
H A D | prepare_vdpa.sh | 26 # Create /dev/vhost-vdpa-0 28 # Create /dev/vhost-vdpa-1 30 # Create /dev/vhost-vdpa-2
|
H A D | run_integration_tests_windows_x86_64.sh | 34 # Use device mapper to create a snapshot of the Windows image 37 dmsetup create windows-base --table "0 $img_blk_size linear $loop_device 0" 39 dmsetup create windows-snapshot-base --table "0 $img_blk_size snapshot-origin /dev/mapper/windows-b…
|
/cloud-hypervisor/arch/src/riscv64/ |
H A D | mod.rs | 28 /// Failed to create a FDT. 29 #[error("Failed to create a FDT")] 36 /// Failed to create a AIA. 37 #[error("Failed to create a AIA")]
|
/cloud-hypervisor/docs/ |
H A D | vhost-user-blk-testing.md | 59 ### Create the build dep 79 ### Create 512M block device 81 Create a 512M (first parameter) block device with 512 bytes (second parameter) block size. 91 # From the test terminal. We need to create one vhost-user-blk device for the --disk.
|
H A D | api.md | 9 - [Create a Virtual Machine](#create-a-virtual-machine) 83 | Create the VM | `/vm.create` | `/schemas/VmConfig` | … 133 ##### Create a Virtual Machine 135 We want to create a virtual machine with the following characteristics: 149 -X PUT 'http://localhost/api/v1/vm.create' \ 277 1. Create and boot a complete virtual machine by using the CLI options to build 387 -X PUT 'http://localhost/api/v1/vm.create' \
|
H A D | iommu.md | 67 In order to expose a virtual IOMMU to the guest, it is required to create a 149 of requests need to be issued in order to create large mappings. 179 Next step is simply to create the VM. Two things are important, first we want 181 second thing, we need to create some huge pages in the guest itself so they can
|
H A D | vhost-user-net-testing.md | 71 Here is an example how to create a bridge and add two DPDK ports to it 74 # create a bridge 76 # create two DPDK ports and add them to the bridge
|
H A D | landlock.md | 8 used to create a ruleset. Once the ruleset is applied, the process cannot access 45 Landlock can also be enabled during `vm.create` request by passing a config like below:
|
H A D | vfio-user.md | 11 The `--user-device socket=<path>` parameter is used to create a vfio-user device when creating the … 48 Create an NVMe controller listening on a vfio-user socket with a simple AIO block device in spdk.
|
H A D | snapshot_restore.md | 51 `config.json` contains the virtual machine configuration. It is used to create 66 it is possible to create a new VM based on this snapshot with the following
|
H A D | riscv.md | 13 We create a folder to build and run Cloud Hypervisor at `$HOME/cloud-hypervisor` 88 Below are the steps used to create a QEMU virtual machine that can be used for
|
/cloud-hypervisor/arch/src/aarch64/ |
H A D | mod.rs | 30 /// Failed to create a FDT. 31 #[error("Failed to create a FDT")] 38 /// Failed to create a GIC. 39 #[error("Failed to create a GIC")]
|
/cloud-hypervisor/rate_limiter/src/ |
H A D | group.rs | 21 /// Cannot create thread 25 /// Cannot create epoll context. 29 /// Cannot create EventFd. 33 /// Cannot create RateLimiter. 156 /// Create a new RateLimiterGroup. 176 let epoll_fd = epoll::create(true).map_err(Error::Epoll)?; in new() 211 /// Create a new RateLimiterGroupHandle.
|
/cloud-hypervisor/net_util/src/ |
H A D | open_tap.rs | 73 // Check if the given interface exists before we create it. in open_tap_rx_q_0() 78 // Create a new Tap device in Linux, if none was specified. in open_tap_rx_q_0() 109 /// Create a new virtio network device with the given IP address and
|
/cloud-hypervisor/hypervisor/src/kvm/aarch64/gic/ |
H A D | mod.rs | 231 /// Create a KVM Vgic device 521 let gic = KvmGicV3Its::new(&*vm, create_test_vgic_config()).expect("Cannot create gic"); in test_get_set_dist_regs() 534 let gic = KvmGicV3Its::new(&*vm, create_test_vgic_config()).expect("Cannot create gic"); in test_get_set_redist_regs() 549 let gic = KvmGicV3Its::new(&*vm, create_test_vgic_config()).expect("Cannot create gic"); in test_get_set_icc_regs() 566 .expect("Cannot create gic"); in test_save_data_tables()
|
/cloud-hypervisor/block/src/qcow/ |
H A D | mod.rs | 1980 .expect("Failed to create header.") in default_header_v2() 1984 QcowFile::from(disk_file).expect("Failed to create Qcow from default Header"); in default_header_v2() 1992 .expect("Failed to create header.") in default_header_v3() 1996 QcowFile::from(disk_file).expect("Failed to create Qcow from default Header"); in default_header_v3() 2002 let header = QcowHeader::new(&mut disk_file).expect("Failed to create Header."); in header_read() 2008 let header = QcowHeader::new(&mut disk_file).expect("Failed to create Header."); in header_read() 2018 .expect("Failed to create header."); in header_v2_with_backing() 2024 let read_header = QcowHeader::new(&mut disk_file).expect("Failed to create header."); in header_v2_with_backing() 2035 .expect("Failed to create header."); in header_v3_with_backing() 2041 let read_header = QcowHeader::new(&mut disk_file).expect("Failed to create header."); in header_v3_with_backing() [all …]
|
/cloud-hypervisor/ |
H A D | CONTRIBUTING.md | 82 1. Within your fork, create a branch for your contribution. 83 1. [Create a pull request](https://help.github.com/articles/creating-a-pull-request-from-a-fork/)
|
/cloud-hypervisor/src/bin/ |
H A D | ch-remote.rs | 502 Some("create") => { in rest_api_do_command() 505 .subcommand_matches("create") in rest_api_do_command() 510 simple_api_command(socket, "PUT", "create", Some(&data)).map_err(Error::HttpApiClient) in rest_api_do_command() 709 Some("create") => { in dbus_api_do_command() 712 .subcommand_matches("create") in dbus_api_do_command() 982 .about("Create a coredump from VM") in get_cli_commands_sorted() 985 Command::new("create") in get_cli_commands_sorted() 986 .about("Create VM from a JSON configuration") in get_cli_commands_sorted() 1063 .about("Create a snapshot from VM") in get_cli_commands_sorted()
|
/cloud-hypervisor/fuzz/fuzz_targets/ |
H A D | mem.rs | 73 // Create a virtio-mem device based on the input bytes; 129 // Create a dummy virtio-mem device for fuzzing purpose only
|