Skip to content

Commit ce1e175

Browse files
committed
Adjusted to proper CoVE naming of the SBI extension
Signed-off-by: Wojciech Ozga <woz@zurich.ibm.com>
1 parent c157ec7 commit ce1e175

File tree

8 files changed

+3
-3
lines changed

8 files changed

+3
-3
lines changed

security-monitor/src/confidential_flow/declassify_to_confidential_vm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SPDX-License-Identifier: Apache-2.0
44
use crate::confidential_flow::handlers::mmio::{MmioLoadResponse, MmioStoreResponse};
55
use crate::confidential_flow::handlers::sbi::SbiResponse;
6-
use crate::non_confidential_flow::handlers::cove_hypervisor_extension::RunConfidentialHart;
6+
use crate::non_confidential_flow::handlers::cove_host_extension::RunConfidentialHart;
77

88
/// Declassifiers that expose part of the hypervisor's state to a confidential VM's hart.
99
pub enum DeclassifyToConfidentialVm {

security-monitor/src/non_confidential_flow/finite_state_machine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::core::architecture::TrapCause;
1111
use crate::core::architecture::TrapCause::*;
1212
use crate::core::control_data::{ConfidentialVmId, HardwareHart, HypervisorHart};
1313
use crate::error::Error;
14-
use crate::non_confidential_flow::handlers::cove_hypervisor_extension::{
14+
use crate::non_confidential_flow::handlers::cove_host_extension::{
1515
DestroyConfidentialVm, GetSecurityMonitorInfo, PromoteToConfidentialVm, RunConfidentialHart,
1616
};
1717
use crate::non_confidential_flow::handlers::nested_acceleration_extension::{NaclProbeFeature, NaclSetupSharedMemory};
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-FileCopyrightText: 2023 IBM Corporation
22
// SPDX-FileContributor: Wojciech Ozga <woz@zurich.ibm.com>, IBM Research - Zurich
33
// SPDX-License-Identifier: Apache-2.0
4-
pub mod cove_hypervisor_extension;
4+
pub mod cove_host_extension;
55
pub mod nested_acceleration_extension;
66
pub mod opensbi;
77
pub mod supervisor_binary_interface;

0 commit comments

Comments
 (0)