aio / timers: Untangle include files

include/qemu/timer.h has no need to include main-loop.h and
doing so causes an issue for the next patch. Unfortunately
various files assume including timers.h will pull in main-loop.h.
Untangle this mess.

Signed-off-by: Alex Bligh <alex@alex.org.uk>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
Alex Bligh 2013-08-21 16:02:47 +01:00 committed by Stefan Hajnoczi
parent ff83c66ecc
commit 6a1751b7aa
36 changed files with 39 additions and 4 deletions

View File

@ -11,6 +11,7 @@
#include "trace.h" #include "trace.h"
#include "qemu/range.h" #include "qemu/range.h"
#include "qemu/thread.h" #include "qemu/thread.h"
#include "qemu/main-loop.h"
/* #define DEBUG_IOMMU */ /* #define DEBUG_IOMMU */

View File

@ -27,6 +27,7 @@
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/log.h" #include "qemu/log.h"
#include "qapi/qmp/qerror.h" #include "qapi/qmp/qerror.h"
#include "qemu/main-loop.h"
#include "hw/stream.h" #include "hw/stream.h"

View File

@ -12,6 +12,7 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "hw/qdev.h" #include "hw/qdev.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/main-loop.h"
/* Common timer implementation. */ /* Common timer implementation. */

View File

@ -54,6 +54,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/main-loop.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"

View File

@ -23,6 +23,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/main-loop.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "hw/arm/exynos4210.h" #include "hw/arm/exynos4210.h"

View File

@ -25,6 +25,8 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/timer.h"
#include "qemu/main-loop.h"
#include "trace.h" #include "trace.h"

View File

@ -18,6 +18,7 @@
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/arm/imx.h" #include "hw/arm/imx.h"
#include "qemu/main-loop.h"
#define TYPE_IMX_EPIT "imx.epit" #define TYPE_IMX_EPIT "imx.epit"

View File

@ -18,6 +18,7 @@
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/arm/imx.h" #include "hw/arm/imx.h"
#include "qemu/main-loop.h"
#define TYPE_IMX_GPT "imx.gpt" #define TYPE_IMX_GPT "imx.gpt"

View File

@ -27,6 +27,7 @@
#include "qemu/timer.h" #include "qemu/timer.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/error-report.h" #include "qemu/error-report.h"
#include "qemu/main-loop.h"
#define DEFAULT_FREQUENCY (50*1000000) #define DEFAULT_FREQUENCY (50*1000000)

View File

@ -10,6 +10,7 @@
*/ */
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/main-loop.h"
#undef DEBUG_PUV3 #undef DEBUG_PUV3
#include "hw/unicore32/puv3.h" #include "hw/unicore32/puv3.h"

View File

@ -11,6 +11,7 @@
#include "hw/hw.h" #include "hw/hw.h"
#include "hw/sh4/sh.h" #include "hw/sh4/sh.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/main-loop.h"
#include "exec/address-spaces.h" #include "exec/address-spaces.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"

View File

@ -27,6 +27,7 @@
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "trace.h" #include "trace.h"
#include "qemu/main-loop.h"
/* /*
* Registers of hardware timer in sun4m. * Registers of hardware timer in sun4m.

View File

@ -25,6 +25,7 @@
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "hw/ptimer.h" #include "hw/ptimer.h"
#include "qemu/log.h" #include "qemu/log.h"
#include "qemu/main-loop.h"
#define D(x) #define D(x)

View File

@ -28,6 +28,7 @@
#include "hw/pci/pci_ids.h" #include "hw/pci/pci_ids.h"
#include "tpm_tis.h" #include "tpm_tis.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/main-loop.h"
/*#define DEBUG_TIS */ /*#define DEBUG_TIS */

View File

@ -32,6 +32,7 @@
#include "qemu/iov.h" #include "qemu/iov.h"
#include "sysemu/dma.h" #include "sysemu/dma.h"
#include "trace.h" #include "trace.h"
#include "qemu/main-loop.h"
//#define DEBUG //#define DEBUG
//#define DEBUG_DUMP_DATA //#define DEBUG_DUMP_DATA

View File

@ -14,6 +14,7 @@
#ifndef QEMU_AIO_H #ifndef QEMU_AIO_H
#define QEMU_AIO_H #define QEMU_AIO_H
#include "qemu/typedefs.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/queue.h" #include "qemu/queue.h"
#include "qemu/event_notifier.h" #include "qemu/event_notifier.h"
@ -42,7 +43,7 @@ typedef struct AioHandler AioHandler;
typedef void QEMUBHFunc(void *opaque); typedef void QEMUBHFunc(void *opaque);
typedef void IOHandler(void *opaque); typedef void IOHandler(void *opaque);
typedef struct AioContext { struct AioContext {
GSource source; GSource source;
/* The list of registered AIO handlers */ /* The list of registered AIO handlers */
@ -72,7 +73,7 @@ typedef struct AioContext {
/* Thread pool for performing work and receiving completion callbacks */ /* Thread pool for performing work and receiving completion callbacks */
struct ThreadPool *thread_pool; struct ThreadPool *thread_pool;
} AioContext; };
/** /**
* aio_context_new: Allocate a new AioContext. * aio_context_new: Allocate a new AioContext.

View File

@ -34,6 +34,7 @@
#include "monitor/monitor.h" #include "monitor/monitor.h"
#include "qemu/hbitmap.h" #include "qemu/hbitmap.h"
#include "block/snapshot.h" #include "block/snapshot.h"
#include "qemu/main-loop.h"
#define BLOCK_FLAG_ENCRYPT 1 #define BLOCK_FLAG_ENCRYPT 1
#define BLOCK_FLAG_COMPAT6 4 #define BLOCK_FLAG_COMPAT6 4

View File

@ -16,6 +16,7 @@
#define QEMU_COROUTINE_H #define QEMU_COROUTINE_H
#include <stdbool.h> #include <stdbool.h>
#include "qemu/typedefs.h"
#include "qemu/queue.h" #include "qemu/queue.h"
#include "qemu/timer.h" #include "qemu/timer.h"

View File

@ -3,7 +3,6 @@
#include "qemu/typedefs.h" #include "qemu/typedefs.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/main-loop.h"
#include "qemu/notify.h" #include "qemu/notify.h"
/* timers */ /* timers */

View File

@ -7,6 +7,8 @@ typedef struct QEMUTimer QEMUTimer;
typedef struct QEMUFile QEMUFile; typedef struct QEMUFile QEMUFile;
typedef struct QEMUBH QEMUBH; typedef struct QEMUBH QEMUBH;
typedef struct AioContext AioContext;
struct Monitor; struct Monitor;
typedef struct Monitor Monitor; typedef struct Monitor Monitor;
typedef struct MigrationParams MigrationParams; typedef struct MigrationParams MigrationParams;

View File

@ -17,6 +17,7 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/sockets.h" #include "qemu/sockets.h"
#include "qemu/main-loop.h"
#include "migration/migration.h" #include "migration/migration.h"
#include "migration/qemu-file.h" #include "migration/qemu-file.h"
#include "block/block.h" #include "block/block.h"

View File

@ -14,6 +14,7 @@
*/ */
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/main-loop.h"
#include "qemu/sockets.h" #include "qemu/sockets.h"
#include "migration/migration.h" #include "migration/migration.h"
#include "monitor/monitor.h" #include "monitor/monitor.h"

View File

@ -18,6 +18,7 @@
#include "migration/migration.h" #include "migration/migration.h"
#include "migration/qemu-file.h" #include "migration/qemu-file.h"
#include "block/block.h" #include "block/block.h"
#include "qemu/main-loop.h"
//#define DEBUG_MIGRATION_TCP //#define DEBUG_MIGRATION_TCP

View File

@ -15,6 +15,7 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/sockets.h" #include "qemu/sockets.h"
#include "qemu/main-loop.h"
#include "migration/migration.h" #include "migration/migration.h"
#include "migration/qemu-file.h" #include "migration/qemu-file.h"
#include "block/block.h" #include "block/block.h"

View File

@ -14,6 +14,7 @@
*/ */
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/main-loop.h"
#include "migration/migration.h" #include "migration/migration.h"
#include "monitor/monitor.h" #include "monitor/monitor.h"
#include "migration/qemu-file.h" #include "migration/qemu-file.h"

1
nbd.c
View File

@ -38,6 +38,7 @@
#include "qemu/sockets.h" #include "qemu/sockets.h"
#include "qemu/queue.h" #include "qemu/queue.h"
#include "qemu/main-loop.h"
//#define DEBUG_NBD //#define DEBUG_NBD

View File

@ -36,6 +36,7 @@
#include "qmp-commands.h" #include "qmp-commands.h"
#include "hw/qdev.h" #include "hw/qdev.h"
#include "qemu/iov.h" #include "qemu/iov.h"
#include "qemu/main-loop.h"
#include "qapi-visit.h" #include "qapi-visit.h"
#include "qapi/opts-visitor.h" #include "qapi/opts-visitor.h"
#include "qapi/dealloc-visitor.h" #include "qapi/dealloc-visitor.h"

View File

@ -31,6 +31,7 @@
#include "qemu/option.h" #include "qemu/option.h"
#include "qemu/sockets.h" #include "qemu/sockets.h"
#include "qemu/iov.h" #include "qemu/iov.h"
#include "qemu/main-loop.h"
typedef struct NetSocketState { typedef struct NetSocketState {
NetClientState nc; NetClientState nc;

View File

@ -26,6 +26,7 @@
#include "qemu/sockets.h" #include "qemu/sockets.h"
#include "block/coroutine.h" #include "block/coroutine.h"
#include "qemu/iov.h" #include "qemu/iov.h"
#include "qemu/main-loop.h"
ssize_t coroutine_fn ssize_t coroutine_fn
qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt, qemu_co_sendv_recvv(int sockfd, struct iovec *iov, unsigned iov_cnt,

View File

@ -10,6 +10,7 @@
#include "qemu-io.h" #include "qemu-io.h"
#include "block/block_int.h" #include "block/block_int.h"
#include "qemu/main-loop.h"
#define CMD_NOFILE_OK 0x01 #define CMD_NOFILE_OK 0x01

View File

@ -19,6 +19,7 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "block/block.h" #include "block/block.h"
#include "block/nbd.h" #include "block/nbd.h"
#include "qemu/main-loop.h"
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>

View File

@ -9,6 +9,7 @@
#include <libslirp.h> #include <libslirp.h>
#include "monitor/monitor.h" #include "monitor/monitor.h"
#include "qemu/main-loop.h"
#ifdef DEBUG #ifdef DEBUG
int slirp_debug = DBG_CALL|DBG_MISC|DBG_ERROR; int slirp_debug = DBG_CALL|DBG_MISC|DBG_ERROR;

View File

@ -23,6 +23,7 @@
#include "block/block_int.h" #include "block/block_int.h"
#include "qemu/event_notifier.h" #include "qemu/event_notifier.h"
#include "block/thread-pool.h" #include "block/thread-pool.h"
#include "qemu/main-loop.h"
static void do_spawn_thread(ThreadPool *pool); static void do_spawn_thread(ThreadPool *pool);

View File

@ -33,6 +33,7 @@ typedef struct VncStateSASL VncStateSASL;
typedef struct VncDisplaySASL VncDisplaySASL; typedef struct VncDisplaySASL VncDisplaySASL;
#include "qemu/acl.h" #include "qemu/acl.h"
#include "qemu/main-loop.h"
struct VncStateSASL { struct VncStateSASL {
sasl_conn_t *conn; sasl_conn_t *conn;

View File

@ -25,7 +25,7 @@
*/ */
#include "vnc.h" #include "vnc.h"
#include "qemu/main-loop.h"
static void start_auth_vencrypt_subauth(VncState *vs) static void start_auth_vencrypt_subauth(VncState *vs)
{ {

View File

@ -19,6 +19,7 @@
*/ */
#include "vnc.h" #include "vnc.h"
#include "qemu/main-loop.h"
#ifdef CONFIG_VNC_TLS #ifdef CONFIG_VNC_TLS
#include "qemu/sockets.h" #include "qemu/sockets.h"