diff options
author | Alexander Graf <agraf@csgraf.de> | 2021-10-08 07:46:16 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-10-13 10:47:49 +0200 |
commit | dec490db8b5c98d60814d07c23ddf70708a56d6e (patch) | |
tree | 46fd5d5bc5d3d46cbeb908cb9f4cbe3d1247a3ec /accel/hvf | |
parent | 8e751e9c38e324737fd3d3aa0562f886313bba3c (diff) | |
download | qemu-dec490db8b5c98d60814d07c23ddf70708a56d6e.zip qemu-dec490db8b5c98d60814d07c23ddf70708a56d6e.tar.gz qemu-dec490db8b5c98d60814d07c23ddf70708a56d6e.tar.bz2 |
hvf: Determine slot count from struct layout
We can handle up to a static amount of memory slots, capped by the size of
an internal array.
Let's make sure that array size is the only source of truth for the number
of elements in that array.
Signed-off-by: Alexander Graf <agraf@csgraf.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20211008054616.43828-1-agraf@csgraf.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel/hvf')
-rw-r--r-- | accel/hvf/hvf-accel-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/hvf/hvf-accel-ops.c b/accel/hvf/hvf-accel-ops.c index 6cbd2c3..2b2c411 100644 --- a/accel/hvf/hvf-accel-ops.c +++ b/accel/hvf/hvf-accel-ops.c @@ -321,7 +321,7 @@ static int hvf_accel_init(MachineState *ms) s = g_new0(HVFState, 1); - s->num_slots = 32; + s->num_slots = ARRAY_SIZE(s->slots); for (x = 0; x < s->num_slots; ++x) { s->slots[x].size = 0; s->slots[x].slot_id = x; |