Home
last modified time | relevance | path

Searched +full:- +full:- +full:print +full:- +full:architecture (Results 1 – 5 of 5) sorted by relevance

/cloud-hypervisor/.github/workflows/
H A Dintegration-windows.yaml4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
10 runs-on: ${{ github.event_name == 'pull_request' && 'ubuntu-latest' || 'garm-jammy-16' }}
12 - name: Code checkout
16 fetch-depth: 0
17 - name: Install Docker
20 sudo apt-get update
21 sudo apt-get -y install ca-certificates curl gnupg
22 …curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyring…
23 sudo chmod a+r /usr/share/keyrings/docker-archive-keyring.gpg
[all …]
H A Dintegration-x86-64.yaml1 name: Cloud Hypervisor Tests (x86-64)
4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
9 timeout-minutes: 60
11 fail-fast: false
13 runner: ['garm-jammy', "garm-jammy-amd"]
15 name: Tests (x86-64)
16 …runs-on: ${{ github.event_name == 'pull_request' && !(matrix.runner == 'garm-jammy' && matrix.libc…
18 - name: Code checkout
19 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
[all …]
/cloud-hypervisor/arch/src/aarch64/
H A Dfdt.rs3 // SPDX-License-Identifier: Apache-2.0
6 // Use of this source code is governed by a BSD-style license that can be
7 // found in the THIRD-PARTY file.
41 // This is a value for virtio-iommu. Now only one virtio-iommu device is supported.
57 // https://www.kernel.org/doc/Documentation/devicetree/bindings/interrupt-controller/arm%2Cgic.txt
62 // From https://elixir.bootlin.com/linux/v4.9.62/source/include/dt-bindings/interrupt-controller/ir…
73 fn addr(&self) -> u64; in addr()
75 fn irq(&self) -> u32; in irq()
77 fn length(&self) -> u64; in length()
102 pub fn get_cache_size(cache_level: CacheLevel) -> u32 { in get_cache_size()
[all …]
/cloud-hypervisor/src/
H A Dmain.rs3 // SPDX-License-Identifier: Apache-2.0
40 #[cfg(feature = "dhat-heap")]
71 #[error("Error parsing --api-socket")]
73 #[error("Error parsing --event-monitor")]
76 #[error("`--dbus-object-path` option isn't provided")]
79 #[error("`--dbus-service-name` option isn't provided")]
81 #[error("Error parsing --event-monitor: path or fd required")]
88 #[error("Error parsing --gdb")]
91 #[error("Error parsing --gdb: path required")]
123 fn enabled(&self, _metadata: &log::Metadata) -> bool { in enabled()
[all …]
/cloud-hypervisor/tests/
H A Dintegration.rs3 // SPDX-License-Identifier: Apache-2.0
7 // hence have known dead-code. This annotation silences dead-code
36 pub const FOCAL_IMAGE_NAME: &str = "focal-server-cloudimg-amd64-custom-20210609-0.raw";
38 "jammy-server-cloudimg-amd64-custom-vfio-20241012-0.raw";
39 pub const FOCAL_IMAGE_NAME_QCOW2: &str = "focal-server-cloudimg-amd64-custom-20210609-0.qcow2";
41 "focal-server-cloudimg-amd64-custom-20210609-0-backing.qcow2";
42 pub const FOCAL_IMAGE_NAME_VHD: &str = "focal-server-cloudimg-amd64-custom-20210609-0.vhd";
43 pub const FOCAL_IMAGE_NAME_VHDX: &str = "focal-server-cloudimg-amd64-custom-20210609-0.vhdx";
44 pub const JAMMY_IMAGE_NAME: &str = "jammy-server-cloudimg-amd64-custom-20241017-0.raw";
45 pub const WINDOWS_IMAGE_NAME: &str = "windows-server-2022-amd64-2.raw";
[all …]