Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xing Lin
qemu
Commits
9c17d615
Commit
9c17d615
authored
Dec 17, 2012
by
Paolo Bonzini
Browse files
softmmu: move include files to include/sysemu/
Signed-off-by:
Paolo Bonzini
<
pbonzini@redhat.com
>
parent
1de7afc9
Changes
296
Hide whitespace changes
Inline
Side-by-side
arch_init.c
View file @
9c17d615
...
...
@@ -30,15 +30,15 @@
#endif
#include
"config.h"
#include
"monitor/monitor.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"qemu/bitops.h"
#include
"qemu/bitmap.h"
#include
"arch_init.h"
#include
"
sysemu/
arch_init.h"
#include
"audio/audio.h"
#include
"hw/pc.h"
#include
"hw/pci/pci.h"
#include
"hw/audiodev.h"
#include
"kvm.h"
#include
"
sysemu/
kvm.h"
#include
"migration/migration.h"
#include
"exec/gdbstub.h"
#include
"hw/smbios.h"
...
...
audio/audio.c
View file @
9c17d615
...
...
@@ -25,7 +25,7 @@
#include
"audio.h"
#include
"monitor/monitor.h"
#include
"qemu/timer.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#define AUDIO_CAP "audio"
#include
"audio_int.h"
...
...
audio/winwaveaudio.c
View file @
9c17d615
/* public domain */
#include
"qemu-common.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"audio.h"
#define AUDIO_CAP "winwave"
...
...
balloon.c
View file @
9c17d615
...
...
@@ -26,8 +26,8 @@
#include
"monitor/monitor.h"
#include
"exec/cpu-common.h"
#include
"kvm.h"
#include
"balloon.h"
#include
"
sysemu/
kvm.h"
#include
"
sysemu/
balloon.h"
#include
"trace.h"
#include
"qmp-commands.h"
#include
"qapi/qmp/qjson.h"
...
...
block-migration.c
View file @
9c17d615
...
...
@@ -20,7 +20,7 @@
#include
"qemu/timer.h"
#include
"migration/block.h"
#include
"migration/migration.h"
#include
"blockdev.h"
#include
"
sysemu/
blockdev.h"
#include
<assert.h>
#define BLOCK_SIZE (BDRV_SECTORS_PER_DIRTY_CHUNK << BDRV_SECTOR_BITS)
...
...
block.c
View file @
9c17d615
...
...
@@ -29,7 +29,7 @@
#include
"block/blockjob.h"
#include
"qemu/module.h"
#include
"qapi/qmp/qjson.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"qemu/notify.h"
#include
"block/coroutine.h"
#include
"qmp-commands.h"
...
...
block/vdi.c
View file @
9c17d615
...
...
@@ -58,7 +58,7 @@
#include
<uuid/uuid.h>
#else
/* TODO: move uuid emulation to some central place in QEMU. */
#include
"sysemu.h"
/* UUID_FMT */
#include
"sysemu
/sysemu
.h"
/* UUID_FMT */
typedef
unsigned
char
uuid_t
[
16
];
#endif
...
...
blockdev-nbd.c
View file @
9c17d615
...
...
@@ -9,11 +9,11 @@
* later. See the COPYING file in the top-level directory.
*/
#include
"blockdev.h"
#include
"
sysemu/
blockdev.h"
#include
"hw/block-common.h"
#include
"monitor/monitor.h"
#include
"qapi/qmp/qerror.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"qmp-commands.h"
#include
"trace.h"
#include
"block/nbd.h"
...
...
blockdev.c
View file @
9c17d615
...
...
@@ -7,7 +7,7 @@
* later. See the COPYING file in the top-level directory.
*/
#include
"blockdev.h"
#include
"
sysemu/
blockdev.h"
#include
"hw/block-common.h"
#include
"block/blockjob.h"
#include
"monitor/monitor.h"
...
...
@@ -15,11 +15,11 @@
#include
"qemu/option.h"
#include
"qemu/config-file.h"
#include
"qapi/qmp/types.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"block/block_int.h"
#include
"qmp-commands.h"
#include
"trace.h"
#include
"arch_init.h"
#include
"
sysemu/
arch_init.h"
static
QTAILQ_HEAD
(
drivelist
,
DriveInfo
)
drives
=
QTAILQ_HEAD_INITIALIZER
(
drives
);
...
...
cpu-exec.c
View file @
9c17d615
...
...
@@ -21,7 +21,7 @@
#include
"disas/disas.h"
#include
"tcg.h"
#include
"qemu/atomic.h"
#include
"qtest.h"
#include
"
sysemu/
qtest.h"
int
tb_invalidated_flag
;
...
...
cpus.c
View file @
9c17d615
...
...
@@ -26,15 +26,15 @@
#include
"config-host.h"
#include
"monitor/monitor.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"exec/gdbstub.h"
#include
"dma.h"
#include
"kvm.h"
#include
"
sysemu/
dma.h"
#include
"
sysemu/
kvm.h"
#include
"qmp-commands.h"
#include
"qemu/thread.h"
#include
"cpus.h"
#include
"qtest.h"
#include
"
sysemu/
cpus.h"
#include
"
sysemu/
qtest.h"
#include
"qemu/main-loop.h"
#include
"qemu/bitmap.h"
...
...
device_tree.c
View file @
9c17d615
...
...
@@ -20,7 +20,7 @@
#include
"config.h"
#include
"qemu-common.h"
#include
"device_tree.h"
#include
"
sysemu/
device_tree.h"
#include
"hw/loader.h"
#include
"qemu/option.h"
#include
"qemu/config-file.h"
...
...
dma-helpers.c
View file @
9c17d615
...
...
@@ -7,7 +7,7 @@
* (GNU GPL), version 2 or later.
*/
#include
"dma.h"
#include
"
sysemu/
dma.h"
#include
"trace.h"
#include
"qemu/range.h"
#include
"qemu/thread.h"
...
...
dump-stub.c
View file @
9c17d615
...
...
@@ -12,7 +12,7 @@
*/
#include
"qemu-common.h"
#include
"dump.h"
#include
"
sysemu/
dump.h"
#include
"qapi/qmp/qerror.h"
#include
"qmp-commands.h"
...
...
dump.c
View file @
9c17d615
...
...
@@ -17,10 +17,10 @@
#include
"exec/cpu-all.h"
#include
"exec/hwaddr.h"
#include
"monitor/monitor.h"
#include
"kvm.h"
#include
"dump.h"
#include
"sysemu.h"
#include
"memory_mapping.h"
#include
"
sysemu/
kvm.h"
#include
"
sysemu/
dump.h"
#include
"sysemu
/sysemu
.h"
#include
"
sysemu/
memory_mapping.h"
#include
"qapi/error.h"
#include
"qmp-commands.h"
#include
"exec/gdbstub.h"
...
...
exec.c
View file @
9c17d615
...
...
@@ -30,17 +30,17 @@
#include
"hw/hw.h"
#include
"hw/qdev.h"
#include
"qemu/osdep.h"
#include
"kvm.h"
#include
"
sysemu/
kvm.h"
#include
"hw/xen.h"
#include
"qemu/timer.h"
#include
"qemu/config-file.h"
#include
"exec/memory.h"
#include
"dma.h"
#include
"
sysemu/
dma.h"
#include
"exec/address-spaces.h"
#if defined(CONFIG_USER_ONLY)
#include
<qemu.h>
#else
/* !CONFIG_USER_ONLY */
#include
"xen-mapcache.h"
#include
"
sysemu/
xen-mapcache.h"
#include
"trace.h"
#endif
...
...
gdbstub.c
View file @
9c17d615
...
...
@@ -31,7 +31,7 @@
#else
#include
"monitor/monitor.h"
#include
"qemu-char.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"exec/gdbstub.h"
#endif
...
...
@@ -39,7 +39,7 @@
#include
"cpu.h"
#include
"qemu/sockets.h"
#include
"kvm.h"
#include
"
sysemu/
kvm.h"
#ifndef TARGET_CPU_MEMORY_RW_DEBUG
static
inline
int
target_memory_rw_debug
(
CPUArchState
*
env
,
target_ulong
addr
,
...
...
hw/ac97.c
View file @
9c17d615
...
...
@@ -21,7 +21,7 @@
#include
"audiodev.h"
#include
"audio/audio.h"
#include
"pci/pci.h"
#include
"dma.h"
#include
"
sysemu/
dma.h"
enum
{
AC97_Reset
=
0x00
,
...
...
hw/acpi.c
View file @
9c17d615
...
...
@@ -18,7 +18,7 @@
* Contributions after 2012-01-13 are licensed under the terms of the
* GNU GPL, version 2 or (at your option) any later version.
*/
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"hw.h"
#include
"pc.h"
#include
"acpi.h"
...
...
hw/acpi_ich9.c
View file @
9c17d615
...
...
@@ -27,9 +27,9 @@
#include
"pc.h"
#include
"pci/pci.h"
#include
"qemu/timer.h"
#include
"sysemu.h"
#include
"sysemu
/sysemu
.h"
#include
"acpi.h"
#include
"kvm.h"
#include
"
sysemu/
kvm.h"
#include
"exec/address-spaces.h"
#include
"ich9.h"
...
...
Prev
1
2
3
4
5
…
15
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment