xen-stubs.c 682 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Stubs for unimplemented Xen functions for ARM.
  3. *
  4. * SPDX-License-Identifier: MIT
  5. */
  6. #include "qemu/osdep.h"
  7. #include "qemu/error-report.h"
  8. #include "qapi/qapi-commands-migration.h"
  9. #include "hw/boards.h"
  10. #include "system/system.h"
  11. #include "hw/xen/xen-hvm-common.h"
  12. #include "hw/xen/arch_hvm.h"
  13. void arch_handle_ioreq(XenIOState *state, ioreq_t *req)
  14. {
  15. hw_error("Invalid ioreq type 0x%x\n", req->type);
  16. return;
  17. }
  18. void arch_xen_set_memory(XenIOState *state, MemoryRegionSection *section,
  19. bool add)
  20. {
  21. }
  22. void xen_hvm_modified_memory(ram_addr_t start, ram_addr_t length)
  23. {
  24. }
  25. void qmp_xen_set_global_dirty_log(bool enable, Error **errp)
  26. {
  27. }