diff options
| author | Maciej S. Szmigiero <maciej.szmigiero@oracle.com> | 2023-08-23 23:34:14 +0200 |
|---|---|---|
| committer | Maciej S. Szmigiero <maciej.szmigiero@oracle.com> | 2023-11-06 14:08:10 +0100 |
| commit | 259ebed45a2cd2ae6a5820fbc2e51578d2ad4eb7 (patch) | |
| tree | b79f2d9b57cdf58408a26880a23ce79836936e38 /hw/hyperv/meson.build | |
| parent | 16dff2f9bb877bd1e147b5c5d9966d5a1d336c8c (diff) | |
| download | focaccia-qemu-259ebed45a2cd2ae6a5820fbc2e51578d2ad4eb7.tar.gz focaccia-qemu-259ebed45a2cd2ae6a5820fbc2e51578d2ad4eb7.zip | |
qapi: Add HV_BALLOON_STATUS_REPORT event and its QMP query command
Used by the hv-balloon driver for (optional) guest memory status reports. Acked-by: David Hildenbrand <david@redhat.com> Signed-off-by: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
Diffstat (limited to 'hw/hyperv/meson.build')
| -rw-r--r-- | hw/hyperv/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/hyperv/meson.build b/hw/hyperv/meson.build index 852d4f4a2e..d3d2668c71 100644 --- a/hw/hyperv/meson.build +++ b/hw/hyperv/meson.build @@ -2,4 +2,4 @@ specific_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c')) specific_ss.add(when: 'CONFIG_HYPERV_TESTDEV', if_true: files('hyperv_testdev.c')) specific_ss.add(when: 'CONFIG_VMBUS', if_true: files('vmbus.c')) specific_ss.add(when: 'CONFIG_SYNDBG', if_true: files('syndbg.c')) -specific_ss.add(when: 'CONFIG_HV_BALLOON', if_true: files('hv-balloon.c', 'hv-balloon-page_range_tree.c', 'hv-balloon-our_range_memslots.c')) +specific_ss.add(when: 'CONFIG_HV_BALLOON', if_true: files('hv-balloon.c', 'hv-balloon-page_range_tree.c', 'hv-balloon-our_range_memslots.c'), if_false: files('hv-balloon-stub.c')) |