From 857edc71a9e60e6b77e870ea81b069b05467aeed Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 25 Jul 2022 22:36:36 +0100 Subject: [PATCH] vmm: cpu: Remove now unused CpuManager::vcpus_paused() Signed-off-by: Rob Bradford --- vmm/src/cpu.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vmm/src/cpu.rs b/vmm/src/cpu.rs index a6ae0f4ea..2e73037ae 100644 --- a/vmm/src/cpu.rs +++ b/vmm/src/cpu.rs @@ -1487,10 +1487,6 @@ impl CpuManager { .map_err(Error::TranslateVirtualAddress)?; Ok(gpa) } - - pub fn vcpus_paused(&self) -> bool { - self.vcpus_pause_signalled.load(Ordering::SeqCst) - } } struct Cpu {