diff options
author | David Hildenbrand <david@redhat.com> | 2017-09-13 15:24:09 +0200 |
---|---|---|
committer | Cornelia Huck <cohuck@redhat.com> | 2017-09-19 18:31:32 +0200 |
commit | b599fef28e161ef2a8d3bac18eace4e405421055 (patch) | |
tree | 93fc01a479a22bb8c3a2759bee96942e7867557f /target/s390x/cpu-qom.h | |
parent | ca5c1457d614fec718aaec7bdf3663dec37e1e50 (diff) | |
download | qemu-b599fef28e161ef2a8d3bac18eace4e405421055.zip qemu-b599fef28e161ef2a8d3bac18eace4e405421055.tar.gz qemu-b599fef28e161ef2a8d3bac18eace4e405421055.tar.bz2 |
target/s390x: rename next_cpu_id to next_core_id
Adapt to the new term "core_id". While at it, fix the type and drop the
initialization to 0 (which is superfluous).
Reviewed-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
Message-Id: <20170913132417.24384-15-david@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x/cpu-qom.h')
-rw-r--r-- | target/s390x/cpu-qom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/cpu-qom.h b/target/s390x/cpu-qom.h index 2435cd8..2e446fa 100644 --- a/target/s390x/cpu-qom.h +++ b/target/s390x/cpu-qom.h @@ -54,7 +54,7 @@ typedef struct S390CPUClass { bool is_migration_safe; const char *desc; - int64_t next_cpu_id; + uint32_t next_core_id; DeviceRealize parent_realize; void (*parent_reset)(CPUState *cpu); |