]> Git Repo - qemu.git/commitdiff
Revert "Introduce cpu_clean_all_dirty"
authorLiang Li <[email protected]>
Thu, 5 Nov 2015 03:51:04 +0000 (11:51 +0800)
committerPaolo Bonzini <[email protected]>
Thu, 5 Nov 2015 10:28:23 +0000 (11:28 +0100)
This reverts commit de9d61e83d43be9069e6646fa9d57a3f47779d28.

Now 'cpu_clean_all_dirty' is useless, we can revert the related code.

Conflicts:
include/sysemu/kvm.h

Signed-off-by: Liang Li <[email protected]>
Message-Id: <1446695464[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
cpus.c
include/sysemu/cpus.h
include/sysemu/kvm.h
kvm-all.c

diff --git a/cpus.c b/cpus.c
index d2e9e4fd96db350287f29ff2073d7ce8e4ac4cfa..c6a5d0e5e44b7a503bb4f9bb772dfdd346d1c760 100644 (file)
--- a/cpus.c
+++ b/cpus.c
@@ -694,15 +694,6 @@ void cpu_synchronize_all_post_init(void)
     }
 }
 
-void cpu_clean_all_dirty(void)
-{
-    CPUState *cpu;
-
-    CPU_FOREACH(cpu) {
-        cpu_clean_state(cpu);
-    }
-}
-
 static int do_vm_stop(RunState state)
 {
     int ret = 0;
index 30ddd1220e52e3c4d72e6c6bb59110cea270b408..3d1e5ba1e13858599425585f1618b7181376fc58 100644 (file)
@@ -11,7 +11,6 @@ void cpu_stop_current(void);
 void cpu_synchronize_all_states(void);
 void cpu_synchronize_all_post_reset(void);
 void cpu_synchronize_all_post_init(void);
-void cpu_clean_all_dirty(void);
 
 void qtest_clock_warp(int64_t dest);
 
index 461ef65dead6f97af17b3d6061c9ee065e1fb9de..4ac617687980f897d16282c8bac3b5b798a2c70f 100644 (file)
@@ -417,7 +417,6 @@ int kvm_physical_memory_addr_from_host(KVMState *s, void *ram_addr,
 void kvm_cpu_synchronize_state(CPUState *cpu);
 void kvm_cpu_synchronize_post_reset(CPUState *cpu);
 void kvm_cpu_synchronize_post_init(CPUState *cpu);
-void kvm_cpu_clean_state(CPUState *cpu);
 
 /* generic hooks - to be moved/refactored once there are more users */
 
@@ -442,13 +441,6 @@ static inline void cpu_synchronize_post_init(CPUState *cpu)
     }
 }
 
-static inline void cpu_clean_state(CPUState *cpu)
-{
-    if (kvm_enabled()) {
-        kvm_cpu_clean_state(cpu);
-    }
-}
-
 int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg, PCIDevice *dev);
 int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg,
                                  PCIDevice *dev);
index c4428386689cd837fc3f73b28086622f56b61688..1bc12737723c388aaa32958d4be24cbae740908e 100644 (file)
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -1766,11 +1766,6 @@ void kvm_cpu_synchronize_post_init(CPUState *cpu)
     run_on_cpu(cpu, do_kvm_cpu_synchronize_post_init, cpu);
 }
 
-void kvm_cpu_clean_state(CPUState *cpu)
-{
-    cpu->kvm_vcpu_dirty = false;
-}
-
 int kvm_cpu_exec(CPUState *cpu)
 {
     struct kvm_run *run = cpu->kvm_run;
This page took 0.035309 seconds and 4 git commands to generate.