]> xenbits.xensource.com Git - people/dariof/xen.git/commitdiff
xen: sched: refactor the ASSERTs around vcpu_deassing() rel/sched/null-fix-vcpu-hotplug-v2
authorDario Faggioli <dfaggioli@suse.com>
Thu, 25 Jul 2019 17:51:19 +0000 (19:51 +0200)
committerDario Faggioli <dfaggioli@suse.com>
Thu, 25 Jul 2019 17:51:32 +0000 (19:51 +0200)
It is all the time that we call vcpu_deassing() that the vcpu _must_ be
assigned to a pCPU, and hence that such pCPU can't be free.

Therefore, move the ASSERT-s which check for these properties in that
function, where they belong better.

Signed-off-by: Dario Faggioli <dfaggioli@suse.com>
Reviewed-by: George Dunlap <george.dunlap@citix.com>
xen/common/sched_null.c

index 1bbcaf92b9e2a3015529a7487b750ac51a21de1e..c72335e5fafdb8d5591ec1a833108c2468cec1d4 100644 (file)
@@ -368,6 +368,8 @@ static bool vcpu_deassign(struct null_private *prv, struct vcpu *v)
     struct null_vcpu *wvc;
 
     ASSERT(list_empty(&null_vcpu(v)->waitq_elem));
+    ASSERT(per_cpu(npc, v->processor).vcpu == v);
+    ASSERT(!cpumask_test_cpu(v->processor, &prv->cpus_free));
 
     per_cpu(npc, cpu).vcpu = NULL;
     cpumask_set_cpu(cpu, &prv->cpus_free);
@@ -529,9 +531,6 @@ static void null_vcpu_remove(const struct scheduler *ops, struct vcpu *v)
         goto out;
     }
 
-    ASSERT(per_cpu(npc, v->processor).vcpu == v);
-    ASSERT(!cpumask_test_cpu(v->processor, &prv->cpus_free));
-
     vcpu_deassign(prv, v);
 
  out: