diff options
| author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-01-21 12:03:48 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-01-24 20:59:11 +0100 |
| commit | 4f7f589381d5f75fe5ce9af68bd5a83237c93e3a (patch) | |
| tree | f32bbd5fb3213efa462af7059595420603125c45 /accel/tcg/tcg-all.c | |
| parent | ce7cdebdb583c8dd20e74c977f61c91b8d4333ef (diff) | |
| download | focaccia-qemu-4f7f589381d5f75fe5ce9af68bd5a83237c93e3a.tar.gz focaccia-qemu-4f7f589381d5f75fe5ce9af68bd5a83237c93e3a.zip | |
accel: Replace current_machine->accelerator by current_accel() wrapper
We actually want to access the accelerator, not the machine, so use the current_accel() wrapper instead. Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200121110349.25842-10-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel/tcg/tcg-all.c')
| -rw-r--r-- | accel/tcg/tcg-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/tcg-all.c b/accel/tcg/tcg-all.c index 1dc384c8d2..1802ce02f6 100644 --- a/accel/tcg/tcg-all.c +++ b/accel/tcg/tcg-all.c @@ -124,7 +124,7 @@ static void tcg_accel_instance_init(Object *obj) static int tcg_init(MachineState *ms) { - TCGState *s = TCG_STATE(current_machine->accelerator); + TCGState *s = TCG_STATE(current_accel()); tcg_exec_init(s->tb_size * 1024 * 1024); cpu_interrupt_handler = tcg_handle_interrupt; |