79c4324644
Change-Id: I2d302dda68298877c65c99147f5bf22186a59aac
74 lines
2.1 KiB
Diff
74 lines
2.1 KiB
Diff
From 6e057dd5df580f0e525d808f5476ee973280371d Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Hyman=20Huang=28=E9=BB=84=E5=8B=87=29?=
|
|
<huangy81@chinatelecom.cn>
|
|
Date: Sun, 26 Jun 2022 01:38:31 +0800
|
|
Subject: [PATCH 2/3] cpus: Introduce cpu_list_generation_id
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Introduce cpu_list_generation_id to track cpu list generation so
|
|
that cpu hotplug/unplug can be detected during measurement of
|
|
dirty page rate.
|
|
|
|
cpu_list_generation_id could be used to detect changes of cpu
|
|
list, which is prepared for dirty page rate measurement.
|
|
|
|
Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
|
|
Reviewed-by: Peter Xu <peterx@redhat.com>
|
|
Message-Id: <06e1f1362b2501a471dce796abb065b04f320fa5.1656177590.git.huangy81@chinatelecom.cn>
|
|
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
---
|
|
cpus-common.c | 8 ++++++++
|
|
include/exec/cpu-common.h | 1 +
|
|
2 files changed, 9 insertions(+)
|
|
|
|
diff --git a/cpus-common.c b/cpus-common.c
|
|
index 6e73d3e58d..31c6415f37 100644
|
|
--- a/cpus-common.c
|
|
+++ b/cpus-common.c
|
|
@@ -73,6 +73,12 @@ static int cpu_get_free_index(void)
|
|
}
|
|
|
|
CPUTailQ cpus = QTAILQ_HEAD_INITIALIZER(cpus);
|
|
+static unsigned int cpu_list_generation_id;
|
|
+
|
|
+unsigned int cpu_list_generation_id_get(void)
|
|
+{
|
|
+ return cpu_list_generation_id;
|
|
+}
|
|
|
|
void cpu_list_add(CPUState *cpu)
|
|
{
|
|
@@ -84,6 +90,7 @@ void cpu_list_add(CPUState *cpu)
|
|
assert(!cpu_index_auto_assigned);
|
|
}
|
|
QTAILQ_INSERT_TAIL_RCU(&cpus, cpu, node);
|
|
+ cpu_list_generation_id++;
|
|
}
|
|
|
|
void cpu_list_remove(CPUState *cpu)
|
|
@@ -96,6 +103,7 @@ void cpu_list_remove(CPUState *cpu)
|
|
|
|
QTAILQ_REMOVE_RCU(&cpus, cpu, node);
|
|
cpu->cpu_index = UNASSIGNED_CPU_INDEX;
|
|
+ cpu_list_generation_id++;
|
|
}
|
|
|
|
CPUState *qemu_get_cpu(int index)
|
|
diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h
|
|
index 039d422bf4..cdee668f20 100644
|
|
--- a/include/exec/cpu-common.h
|
|
+++ b/include/exec/cpu-common.h
|
|
@@ -11,6 +11,7 @@
|
|
void qemu_init_cpu_list(void);
|
|
void cpu_list_lock(void);
|
|
void cpu_list_unlock(void);
|
|
+unsigned int cpu_list_generation_id_get(void);
|
|
|
|
void tcg_flush_softmmu_tlb(CPUState *cs);
|
|
|
|
--
|
|
2.27.0
|
|
|