summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2017-06-23 22:25:03 +0300
committerMichael S. Tsirkin <mst@redhat.com>2017-08-09 04:22:13 +0300
commitcde0a63ad721dbb538419a00f9405587680be436 (patch)
tree7e3f6326a1eae3052e3e2a3c98a41091396d467e
parent114e0af84ecc08cdb4bd7b871d34be104ca4c59b (diff)
downloadqemu-cde0a63ad721dbb538419a00f9405587680be436.tar.gz
Revert "cpu: add APIs to allocate/free CPU environment"
This reverts commit e2a7f28693aea7e194ec1435697ec4feb24f8a6f. This was not supposed to go upstream yet. Reverting. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rw-r--r--include/qom/cpu.h31
-rw-r--r--qom/cpu.c34
2 files changed, 0 insertions, 65 deletions
diff --git a/include/qom/cpu.h b/include/qom/cpu.h
index e9d30c52b4..25eefea7ab 100644
--- a/include/qom/cpu.h
+++ b/include/qom/cpu.h
@@ -162,10 +162,6 @@ typedef struct CPUClass {
void (*dump_statistics)(CPUState *cpu, FILE *f,
fprintf_function cpu_fprintf, int flags);
int64_t (*get_arch_id)(CPUState *cpu);
- void * (*alloc_env)(CPUState *cpu);
- void (*get_env)(CPUState *cpu, void *env);
- void (*set_env)(CPUState *cpu, void *env);
- void (*free_env)(CPUState *cpu, void *env);
bool (*get_paging_enabled)(const CPUState *cpu);
void (*get_memory_mapping)(CPUState *cpu, MemoryMappingList *list,
Error **errp);
@@ -444,33 +440,6 @@ extern bool mttcg_enabled;
#define qemu_tcg_mttcg_enabled() (mttcg_enabled)
/**
- * cpu_alloc_env: allocate CPU environment structure
- * @cpu: allocate environment structure for this CPU
- */
-void *cpu_alloc_env(CPUState *cpu);
-
-/**
- * cpu_get_env: retrieve CPU environment structure
- * @cpu: CPU to use
- * @env: environment structure to use
- */
-void cpu_get_env(CPUState *cpu, void *env);
-
-/**
- * cpu_set_env: switch to given CPU environment
- * @cpu: CPU to use
- * @env: environment structure to use
- */
-void cpu_set_env(CPUState *cpu, void *env);
-
-/**
- * cpu_free_env: free CPU environment structure
- * @cpu: free environment structure for this CPU
- * @env: structure to free
- */
-void cpu_free_env(CPUState *cpu, void *env);
-
-/**
* cpu_paging_enabled:
* @cpu: The CPU whose state is to be inspected.
*
diff --git a/qom/cpu.c b/qom/cpu.c
index 9201fd9807..4f38db0dac 100644
--- a/qom/cpu.c
+++ b/qom/cpu.c
@@ -89,40 +89,6 @@ out:
return cpu;
}
-void *cpu_alloc_env(CPUState *cpu)
-{
- CPUClass *cc = CPU_GET_CLASS(cpu);
-
- return cc->alloc_env ? cc->alloc_env(cpu) : NULL;
-}
-
-void cpu_get_env(CPUState *cpu, void *env)
-{
- CPUClass *cc = CPU_GET_CLASS(cpu);
-
- if (cc->get_env) {
- cc->get_env(cpu, env);
- }
-}
-
-void cpu_set_env(CPUState *cpu, void *env)
-{
- CPUClass *cc = CPU_GET_CLASS(cpu);
-
- if (cc->set_env) {
- cc->set_env(cpu, env);
- }
-}
-
-void cpu_free_env(CPUState *cpu, void *env)
-{
- CPUClass *cc = CPU_GET_CLASS(cpu);
-
- if (cc->free_env) {
- cc->free_env(cpu, env);
- }
-}
-
bool cpu_paging_enabled(const CPUState *cpu)
{
CPUClass *cc = CPU_GET_CLASS(cpu);