hv-balloon-stub.c 522 B

12345678910111213141516171819
  1. /*
  2. * QEMU Hyper-V Dynamic Memory Protocol driver
  3. *
  4. * Copyright (C) 2023 Oracle and/or its affiliates.
  5. *
  6. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  7. * See the COPYING file in the top-level directory.
  8. */
  9. #include "qemu/osdep.h"
  10. #include "qapi/error.h"
  11. #include "qapi/qapi-commands-machine.h"
  12. #include "qapi/qapi-types-machine.h"
  13. HvBalloonInfo *qmp_query_hv_balloon_status_report(Error **errp)
  14. {
  15. error_setg(errp, "hv-balloon device not enabled in this build");
  16. return NULL;
  17. }