You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/vmm/src/linux/tee/inteltdx.rs
+5-5
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ pub enum Error {
24
24
}
25
25
26
26
pubstructIntelTdx{
27
-
caps:TdxCapabilities,
27
+
// caps: TdxCapabilities,
28
28
vm:TdxVm,
29
29
tdvf_sections:Vec<TdvfSection>,
30
30
tdvf_file:File,
@@ -34,9 +34,9 @@ impl IntelTdx {
34
34
pubfnnew(vm_fd:&VmFd) -> Result<Self,Error>{
35
35
// FIXME(jakecorrenti): need to specify the max number of VCPUs here and not just assume 100. This should come from the VmResources that we set when doing krun_set_vm_config()
36
36
let vm = TdxVm::new(vm_fd,1).or_else(|_| returnErr(Error::CreateTdxVmStruct))?;
0 commit comments