mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
misc: clippy: add uninlined_format_args
Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de> On-behalf-of: SAP philipp.schuster@sap.com
This commit is contained in:
committed by
Rob Bradford
parent
7cb73e9e56
commit
ea4f07d3bf
@@ -1266,7 +1266,7 @@ impl CpuManager {
|
||||
warn!("TDG_VP_VMCALL_SETUP_EVENT_NOTIFY_INTERRUPT not supported")
|
||||
}
|
||||
},
|
||||
Err(e) => error!("Unexpected TDX VMCALL: {}", e),
|
||||
Err(e) => error!("Unexpected TDX VMCALL: {e}"),
|
||||
}
|
||||
vcpu.vcpu.set_tdx_status(TdxExitStatus::InvalidOperand);
|
||||
}
|
||||
@@ -1922,7 +1922,7 @@ impl CpuManager {
|
||||
// or low (0x000xxx...).
|
||||
let high_range = extract_bits_64!(gva, 55, 1);
|
||||
if high_range == 0 {
|
||||
info!("VA (0x{:x}) range is not supported!", gva);
|
||||
info!("VA (0x{gva:x}) range is not supported!");
|
||||
return Ok(gva);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user