Browse Source

sysemu: avoid proliferation of include/ subdirectories

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
stable-1.5
Paolo Bonzini 13 years ago
parent
commit
dccfcd0e5f
  1. 2
      backends/baum.c
  2. 2
      backends/msmouse.c
  3. 4
      backends/rng-egd.c
  4. 4
      backends/rng-random.c
  5. 2
      backends/rng.c
  6. 2
      backends/tpm.c
  7. 2
      bt-host.c
  8. 2
      bt-vhci.c
  9. 2
      gdbstub.c
  10. 2
      hmp.c
  11. 2
      hw/arm/omap2.c
  12. 2
      hw/arm/pxa2xx.c
  13. 2
      hw/arm/strongarm.c
  14. 2
      hw/bt/core.c
  15. 4
      hw/bt/hci-csr.c
  16. 2
      hw/bt/hci.c
  17. 2
      hw/char/cadence_uart.c
  18. 2
      hw/char/debugcon.c
  19. 2
      hw/char/escc.c
  20. 2
      hw/char/etraxfs_ser.c
  21. 2
      hw/char/exynos4210_uart.c
  22. 2
      hw/char/grlib_apbuart.c
  23. 2
      hw/char/imx_serial.c
  24. 2
      hw/char/ipoctal232.c
  25. 2
      hw/char/lm32_juart.c
  26. 2
      hw/char/lm32_uart.c
  27. 2
      hw/char/mcf_uart.c
  28. 2
      hw/char/milkymist-uart.c
  29. 2
      hw/char/omap_uart.c
  30. 2
      hw/char/parallel.c
  31. 2
      hw/char/pl011.c
  32. 2
      hw/char/sclpconsole.c
  33. 2
      hw/char/serial.c
  34. 2
      hw/char/sh_serial.c
  35. 2
      hw/char/spapr_vty.c
  36. 2
      hw/char/virtio-console.c
  37. 2
      hw/char/xen_console.c
  38. 2
      hw/char/xilinx_uartlite.c
  39. 2
      hw/core/qdev-properties-system.c
  40. 2
      hw/core/qdev-properties.c
  41. 2
      hw/display/xenfb.c
  42. 2
      hw/isa/pc87312.c
  43. 2
      hw/mips/mips_fulong2e.c
  44. 2
      hw/mips/mips_malta.c
  45. 2
      hw/misc/ivshmem.c
  46. 2
      hw/net/xgmac.c
  47. 2
      hw/ppc/spapr_events.c
  48. 2
      hw/ppc/spapr_rtas.c
  49. 2
      hw/sparc/leon3.c
  50. 2
      hw/tpm/tpm_passthrough.c
  51. 2
      hw/tpm/tpm_tis.c
  52. 2
      hw/usb/ccid-card-emulated.c
  53. 2
      hw/usb/ccid-card-passthru.c
  54. 2
      hw/usb/dev-bluetooth.c
  55. 2
      hw/usb/dev-serial.c
  56. 2
      hw/usb/redirect.c
  57. 2
      hw/virtio/virtio-rng.c
  58. 2
      hw/xen/xen_backend.c
  59. 2
      hw/xtensa/xtensa_lx60.c
  60. 4
      include/hw/virtio/virtio-rng.h
  61. 0
      include/sysemu/bt.h
  62. 0
      include/sysemu/char.h
  63. 0
      include/sysemu/rng-random.h
  64. 0
      include/sysemu/rng.h
  65. 0
      include/sysemu/tpm_backend.h
  66. 2
      monitor.c
  67. 2
      net/slirp.c
  68. 2
      qemu-char.c
  69. 2
      qmp.c
  70. 2
      qtest.c
  71. 2
      slirp/slirp.c
  72. 2
      spice-qemu-char.c
  73. 2
      tpm.c
  74. 2
      ui/console.c
  75. 2
      ui/gtk.c
  76. 2
      util/event_notifier-posix.c
  77. 4
      vl.c
  78. 2
      xen-all.c

2
backends/baum.c

@ -22,7 +22,7 @@
* THE SOFTWARE.
*/
#include "qemu-common.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/timer.h"
#include "hw/usb.h"
#include <brlapi.h>

2
backends/msmouse.c

@ -23,7 +23,7 @@
*/
#include <stdlib.h>
#include "qemu-common.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "ui/console.h"
#define MSMOUSE_LO6(n) ((n) & 0x3f)

4
backends/rng-egd.c

@ -10,8 +10,8 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/rng.h"
#include "char/char.h"
#include "sysemu/rng.h"
#include "sysemu/char.h"
#include "qapi/qmp/qerror.h"
#include "hw/qdev.h" /* just for DEFINE_PROP_CHR */

4
backends/rng-random.c

@ -10,8 +10,8 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/rng-random.h"
#include "qemu/rng.h"
#include "sysemu/rng-random.h"
#include "sysemu/rng.h"
#include "qapi/qmp/qerror.h"
#include "qemu/main-loop.h"

2
backends/rng.c

@ -10,7 +10,7 @@
* See the COPYING file in the top-level directory.
*/
#include "qemu/rng.h"
#include "sysemu/rng.h"
#include "qapi/qmp/qerror.h"
void rng_backend_request_entropy(RngBackend *s, size_t size,

2
backends/tpm.c

@ -12,7 +12,7 @@
* Based on backends/rng.c by Anthony Liguori
*/
#include "backends/tpm.h"
#include "sysemu/tpm_backend.h"
#include "qapi/qmp/qerror.h"
#include "sysemu/tpm.h"
#include "qemu/thread.h"

2
bt-host.c

@ -18,7 +18,7 @@
*/
#include "qemu-common.h"
#include "bt/bt.h"
#include "sysemu/bt.h"
#include "qemu/main-loop.h"
#ifndef _WIN32

2
bt-vhci.c

@ -18,7 +18,7 @@
*/
#include "qemu-common.h"
#include "bt/bt.h"
#include "sysemu/bt.h"
#include "hw/bt.h"
#include "qemu/main-loop.h"

2
gdbstub.c

@ -30,7 +30,7 @@
#include "qemu.h"
#else
#include "monitor/monitor.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "sysemu/sysemu.h"
#include "exec/gdbstub.h"
#endif

2
hmp.c

@ -15,7 +15,7 @@
#include "hmp.h"
#include "net/net.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/option.h"
#include "qemu/timer.h"
#include "qmp-commands.h"

2
hw/arm/omap2.c

@ -24,7 +24,7 @@
#include "hw/arm/omap.h"
#include "sysemu/sysemu.h"
#include "qemu/timer.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/block/flash.h"
#include "hw/arm/soc_dma.h"
#include "hw/sysbus.h"

2
hw/arm/pxa2xx.c

@ -13,7 +13,7 @@
#include "hw/char/serial.h"
#include "hw/i2c/i2c.h"
#include "hw/ssi.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "sysemu/blockdev.h"
static struct {

2
hw/arm/strongarm.c

@ -30,7 +30,7 @@
#include "strongarm.h"
#include "qemu/error-report.h"
#include "hw/arm/arm.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "sysemu/sysemu.h"
#include "hw/ssi.h"

2
hw/bt/core.c

@ -18,7 +18,7 @@
*/
#include "qemu-common.h"
#include "bt/bt.h"
#include "sysemu/bt.h"
#include "hw/bt.h"
/* Slave implementations can ignore this */

4
hw/bt/hci-csr.c

@ -19,10 +19,10 @@
*/
#include "qemu-common.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/timer.h"
#include "hw/irq.h"
#include "bt/bt.h"
#include "sysemu/bt.h"
#include "hw/bt.h"
struct csrhci_s {

2
hw/bt/hci.c

@ -21,7 +21,7 @@
#include "qemu-common.h"
#include "qemu/timer.h"
#include "hw/usb.h"
#include "bt/bt.h"
#include "sysemu/bt.h"
#include "hw/bt.h"
struct bt_hci_s {

2
hw/char/cadence_uart.c

@ -17,7 +17,7 @@
*/
#include "hw/sysbus.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/timer.h"
#ifdef CADENCE_UART_ERR_DEBUG

2
hw/char/debugcon.c

@ -25,7 +25,7 @@
*/
#include "hw/hw.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/isa/isa.h"
#include "hw/i386/pc.h"

2
hw/char/escc.c

@ -25,7 +25,7 @@
#include "hw/hw.h"
#include "hw/sysbus.h"
#include "hw/char/escc.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "ui/console.h"
#include "trace.h"

2
hw/char/etraxfs_ser.c

@ -23,7 +23,7 @@
*/
#include "hw/sysbus.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/log.h"
#define D(x)

2
hw/char/exynos4210_uart.c

@ -21,7 +21,7 @@
#include "hw/sysbus.h"
#include "sysemu/sysemu.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/arm/exynos4210.h"

2
hw/char/grlib_apbuart.c

@ -23,7 +23,7 @@
*/
#include "hw/sysbus.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "trace.h"

2
hw/char/imx_serial.c

@ -20,7 +20,7 @@
#include "hw/hw.h"
#include "hw/sysbus.h"
#include "sysemu/sysemu.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/arm/imx.h"
//#define DEBUG_SERIAL 1

2
hw/char/ipoctal232.c

@ -10,7 +10,7 @@
#include "ipack.h"
#include "qemu/bitops.h"
#include "char/char.h"
#include "sysemu/char.h"
/* #define DEBUG_IPOCTAL */

2
hw/char/lm32_juart.c

@ -20,7 +20,7 @@
#include "hw/hw.h"
#include "hw/sysbus.h"
#include "trace.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/lm32/lm32_juart.h"

2
hw/char/lm32_uart.c

@ -25,7 +25,7 @@
#include "hw/hw.h"
#include "hw/sysbus.h"
#include "trace.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/error-report.h"
enum {

2
hw/char/mcf_uart.c

@ -7,7 +7,7 @@
*/
#include "hw/hw.h"
#include "hw/m68k/mcf.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "exec/address-spaces.h"
typedef struct {

2
hw/char/milkymist-uart.c

@ -24,7 +24,7 @@
#include "hw/hw.h"
#include "hw/sysbus.h"
#include "trace.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/error-report.h"
enum {

2
hw/char/omap_uart.c

@ -17,7 +17,7 @@
* You should have received a copy of the GNU General Public License along
* with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/hw.h"
#include "hw/arm/omap.h"
#include "hw/char/serial.h"

2
hw/char/parallel.c

@ -23,7 +23,7 @@
* THE SOFTWARE.
*/
#include "hw/hw.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/isa/isa.h"
#include "hw/i386/pc.h"
#include "sysemu/sysemu.h"

2
hw/char/pl011.c

@ -8,7 +8,7 @@
*/
#include "hw/sysbus.h"
#include "char/char.h"
#include "sysemu/char.h"
typedef struct {
SysBusDevice busdev;

2
hw/char/sclpconsole.c

@ -18,7 +18,7 @@
#include "hw/s390x/sclp.h"
#include "hw/s390x/event-facility.h"
#include "char/char.h"
#include "sysemu/char.h"
typedef struct ASCIIConsoleData {
EventBufferHeader ebh;

2
hw/char/serial.c

@ -24,7 +24,7 @@
*/
#include "hw/char/serial.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/timer.h"
#include "exec/address-spaces.h"

2
hw/char/sh_serial.c

@ -26,7 +26,7 @@
*/
#include "hw/hw.h"
#include "hw/sh4/sh.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "exec/address-spaces.h"
//#define DEBUG_SERIAL

2
hw/char/spapr_vty.c

@ -1,5 +1,5 @@
#include "hw/qdev.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/ppc/spapr.h"
#include "hw/ppc/spapr_vio.h"

2
hw/char/virtio-console.c

@ -10,7 +10,7 @@
* the COPYING file in the top-level directory.
*/
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/error-report.h"
#include "trace.h"
#include "hw/virtio/virtio-serial.h"

2
hw/char/xen_console.c

@ -30,7 +30,7 @@
#include <sys/mman.h>
#include "hw/hw.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/xen/xen_backend.h"
#include <xen/io/console.h>

2
hw/char/xilinx_uartlite.c

@ -23,7 +23,7 @@
*/
#include "hw/sysbus.h"
#include "char/char.h"
#include "sysemu/char.h"
#define DUART(x)

2
hw/core/qdev-properties-system.c

@ -17,7 +17,7 @@
#include "hw/block/block.h"
#include "net/hub.h"
#include "qapi/visitor.h"
#include "char/char.h"
#include "sysemu/char.h"
static void get_pointer(Object *obj, Visitor *v, Property *prop,
const char *(*print)(void *ptr),

2
hw/core/qdev-properties.c

@ -5,7 +5,7 @@
#include "hw/block/block.h"
#include "net/hub.h"
#include "qapi/visitor.h"
#include "char/char.h"
#include "sysemu/char.h"
void qdev_prop_set_after_realize(DeviceState *dev, const char *name,
Error **errp)

2
hw/display/xenfb.c

@ -37,7 +37,7 @@
#include "hw/hw.h"
#include "ui/console.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/xen/xen_backend.h"
#include <xen/event_channel.h>

2
hw/isa/pc87312.c

@ -27,7 +27,7 @@
#include "qemu/error-report.h"
#include "sysemu/blockdev.h"
#include "sysemu/sysemu.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "trace.h"

2
hw/mips/mips_fulong2e.c

@ -30,7 +30,7 @@
#include "hw/mips/mips.h"
#include "hw/mips/cpudevs.h"
#include "hw/pci/pci.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "sysemu/sysemu.h"
#include "audio/audio.h"
#include "qemu/log.h"

2
hw/mips/mips_malta.c

@ -34,7 +34,7 @@
#include "hw/mips/mips.h"
#include "hw/mips/cpudevs.h"
#include "hw/pci/pci.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "sysemu/sysemu.h"
#include "sysemu/arch_init.h"
#include "hw/boards.h"

2
hw/misc/ivshmem.c

@ -24,7 +24,7 @@
#include "migration/migration.h"
#include "qapi/qmp/qerror.h"
#include "qemu/event_notifier.h"
#include "char/char.h"
#include "sysemu/char.h"
#include <sys/mman.h>
#include <sys/types.h>

2
hw/net/xgmac.c

@ -25,7 +25,7 @@
*/
#include "hw/sysbus.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/log.h"
#include "net/net.h"
#include "net/checksum.h"

2
hw/ppc/spapr_events.c

@ -26,7 +26,7 @@
*/
#include "cpu.h"
#include "sysemu/sysemu.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/qdev.h"
#include "sysemu/device_tree.h"

2
hw/ppc/spapr_rtas.c

@ -26,7 +26,7 @@
*/
#include "cpu.h"
#include "sysemu/sysemu.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/qdev.h"
#include "sysemu/device_tree.h"

2
hw/sparc/leon3.c

@ -24,7 +24,7 @@
#include "hw/hw.h"
#include "qemu/timer.h"
#include "hw/ptimer.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "sysemu/sysemu.h"
#include "hw/boards.h"
#include "hw/loader.h"

2
hw/tpm/tpm_passthrough.c

@ -27,7 +27,7 @@
#include "qemu-common.h"
#include "qapi/error.h"
#include "qemu/sockets.h"
#include "backends/tpm.h"
#include "sysemu/tpm_backend.h"
#include "tpm_int.h"
#include "hw/hw.h"
#include "hw/i386/pc.h"

2
hw/tpm/tpm_tis.c

@ -19,7 +19,7 @@
* specification.
*/
#include "backends/tpm.h"
#include "sysemu/tpm_backend.h"
#include "tpm_int.h"
#include "block/block.h"
#include "exec/address-spaces.h"

2
hw/usb/ccid-card-emulated.c

@ -32,7 +32,7 @@
#include <vcard_emul.h>
#include "qemu/thread.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "monitor/monitor.h"
#include "ccid.h"

2
hw/usb/ccid-card-passthru.c

@ -8,7 +8,7 @@
* See the COPYING file in the top-level directory.
*/
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/sockets.h"
#include "monitor/monitor.h"
#include "ccid.h"

2
hw/usb/dev-bluetooth.c

@ -21,7 +21,7 @@
#include "qemu-common.h"
#include "hw/usb.h"
#include "hw/usb/desc.h"
#include "bt/bt.h"
#include "sysemu/bt.h"
#include "hw/bt.h"
struct USBBtState {

2
hw/usb/dev-serial.c

@ -12,7 +12,7 @@
#include "qemu/error-report.h"
#include "hw/usb.h"
#include "hw/usb/desc.h"
#include "char/char.h"
#include "sysemu/char.h"
//#define DEBUG_Serial

2
hw/usb/redirect.c

@ -30,7 +30,7 @@
#include "monitor/monitor.h"
#include "sysemu/sysemu.h"
#include "qemu/iov.h"
#include "char/char.h"
#include "sysemu/char.h"
#include <dirent.h>
#include <sys/ioctl.h>

2
hw/virtio/virtio-rng.c

@ -14,7 +14,7 @@
#include "qapi/qmp/qerror.h"
#include "hw/virtio/virtio.h"
#include "hw/virtio/virtio-rng.h"
#include "qemu/rng.h"
#include "sysemu/rng.h"
static bool is_guest_ready(VirtIORNG *vrng)
{

2
hw/xen/xen_backend.c

@ -35,7 +35,7 @@
#include <sys/signal.h>
#include "hw/hw.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/log.h"
#include "hw/xen/xen_backend.h"

2
hw/xtensa/xtensa_lx60.c

@ -36,7 +36,7 @@
#include "hw/sysbus.h"
#include "hw/block/flash.h"
#include "sysemu/blockdev.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "xtensa_bootparam.h"
typedef struct LxBoardDesc {

4
include/hw/virtio/virtio-rng.h

@ -12,8 +12,8 @@
#ifndef _QEMU_VIRTIO_RNG_H
#define _QEMU_VIRTIO_RNG_H
#include "qemu/rng.h"
#include "qemu/rng-random.h"
#include "sysemu/rng.h"
#include "sysemu/rng-random.h"
/* The Virtio ID for the virtio rng device */
#define VIRTIO_ID_RNG 4

0
include/bt/bt.h → include/sysemu/bt.h

0
include/char/char.h → include/sysemu/char.h

0
include/qemu/rng-random.h → include/sysemu/rng-random.h

0
include/qemu/rng.h → include/sysemu/rng.h

0
include/backends/tpm.h → include/sysemu/tpm_backend.h

2
monitor.c

@ -33,7 +33,7 @@
#include "exec/gdbstub.h"
#include "net/net.h"
#include "net/slirp.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "ui/qemu-spice.h"
#include "sysemu/sysemu.h"
#include "monitor/monitor.h"

2
net/slirp.c

@ -35,7 +35,7 @@
#include "monitor/monitor.h"
#include "qemu/sockets.h"
#include "slirp/libslirp.h"
#include "char/char.h"
#include "sysemu/char.h"
static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
{

2
qemu-char.c

@ -26,7 +26,7 @@
#include "ui/console.h"
#include "sysemu/sysemu.h"
#include "qemu/timer.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "hw/usb.h"
#include "qmp-commands.h"

2
qmp.c

@ -16,7 +16,7 @@
#include "qemu-common.h"
#include "sysemu/sysemu.h"
#include "qmp-commands.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "ui/qemu-spice.h"
#include "ui/vnc.h"
#include "sysemu/kvm.h"

2
qtest.c

@ -13,7 +13,7 @@
#include "sysemu/qtest.h"
#include "hw/qdev.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "exec/ioport.h"
#include "exec/memory.h"
#include "hw/irq.h"

2
slirp/slirp.c

@ -23,7 +23,7 @@
*/
#include "qemu-common.h"
#include "qemu/timer.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "slirp.h"
#include "hw/hw.h"

2
spice-qemu-char.c

@ -1,7 +1,7 @@
#include "config-host.h"
#include "trace.h"
#include "ui/qemu-spice.h"
#include "char/char.h"
#include "sysemu/char.h"
#include <spice.h>
#include <spice-experimental.h>
#include <spice/protocol.h>

2
tpm.c

@ -15,7 +15,7 @@
#include "monitor/monitor.h"
#include "qapi/qmp/qerror.h"
#include "backends/tpm.h"
#include "sysemu/tpm_backend.h"
#include "sysemu/tpm.h"
#include "qemu/config-file.h"
#include "qmp-commands.h"

2
ui/console.c

@ -25,7 +25,7 @@
#include "ui/console.h"
#include "qemu/timer.h"
#include "qmp-commands.h"
#include "char/char.h"
#include "sysemu/char.h"
//#define DEBUG_CONSOLE
#define DEFAULT_BACKSCROLL 512

2
ui/gtk.c

@ -62,7 +62,7 @@
#include "qmp-commands.h"
#include "x_keymap.h"
#include "keymaps.h"
#include "char/char.h"
#include "sysemu/char.h"
//#define DEBUG_GTK

2
util/event_notifier-posix.c

@ -12,7 +12,7 @@
#include "qemu-common.h"
#include "qemu/event_notifier.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/main-loop.h"
#ifdef CONFIG_EVENTFD

4
vl.c

@ -126,7 +126,7 @@ int main(int argc, char **argv)
#include "hw/qdev.h"
#include "hw/loader.h"
#include "monitor/qdev.h"
#include "bt/bt.h"
#include "sysemu/bt.h"
#include "net/net.h"
#include "net/slirp.h"
#include "monitor/monitor.h"
@ -134,7 +134,7 @@ int main(int argc, char **argv)
#include "sysemu/sysemu.h"
#include "exec/gdbstub.h"
#include "qemu/timer.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/cache-utils.h"
#include "sysemu/blockdev.h"
#include "hw/block/block.h"

2
xen-all.c

@ -16,7 +16,7 @@
#include "hw/xen/xen_backend.h"
#include "qmp-commands.h"
#include "char/char.h"
#include "sysemu/char.h"
#include "qemu/range.h"
#include "sysemu/xen-mapcache.h"
#include "trace.h"

Loading…
Cancel
Save