master
c 22 lines 368 Bytes
Raw
1 /*
2 * kvm target arch specific stubs
3 *
4 * Copyright (c) 2026 Red Hat, Inc.
5 *
6 * Author:
7 * Ani Sinha <anisinha@redhat.com>
8 *
9 * SPDX-License-Identifier: GPL-2.0-or-later
10 */
11 #include "qemu/osdep.h"
12 #include "system/kvm.h"
13
14 int kvm_arch_on_vmfd_change(MachineState *ms, KVMState *s)
15 {
16 abort();
17 }
18
19 bool kvm_arch_supports_vmfd_change(void)
20 {
21 return false;
22 }