qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

Include qemu-common.h exactly where needed

No header includes qemu-common.h after this commit, as prescribed by
qemu-common.h's file comment.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190523143508.25387-5-armbru@redhat.com>
[Rebased with conflicts resolved automatically, except for
include/hw/arm/xlnx-zynqmp.h hw/arm/nrf51_soc.c hw/arm/msf2-soc.c
block/qcow2-refcount.c block/qcow2-cluster.c block/qcow2-cache.c
target/arm/cpu.h target/lm32/cpu.h target/m68k/cpu.h target/mips/cpu.h
target/moxie/cpu.h target/nios2/cpu.h target/openrisc/cpu.h
target/riscv/cpu.h target/tilegx/cpu.h target/tricore/cpu.h
target/unicore32/cpu.h target/xtensa/cpu.h; bsd-user/main.c and
net/tap-bsd.c fixed up]

+103 -397
-1
accel/kvm/kvm-all.c
··· 18 18 19 19 #include <linux/kvm.h> 20 20 21 - #include "qemu-common.h" 22 21 #include "qemu/atomic.h" 23 22 #include "qemu/option.h" 24 23 #include "qemu/config-file.h"
-1
accel/stubs/hax-stub.c
··· 14 14 */ 15 15 16 16 #include "qemu/osdep.h" 17 - #include "qemu-common.h" 18 17 #include "cpu.h" 19 18 #include "sysemu/hax.h" 20 19
-1
accel/stubs/hvf-stub.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 - #include "qemu-common.h" 16 15 #include "cpu.h" 17 16 #include "sysemu/hvf.h" 18 17
-1
accel/stubs/kvm-stub.c
··· 11 11 */ 12 12 13 13 #include "qemu/osdep.h" 14 - #include "qemu-common.h" 15 14 #include "cpu.h" 16 15 #include "sysemu/kvm.h" 17 16
-1
accel/stubs/whpx-stub.c
··· 9 9 */ 10 10 11 11 #include "qemu/osdep.h" 12 - #include "qemu-common.h" 13 12 #include "cpu.h" 14 13 #include "sysemu/whpx.h" 15 14
+2
accel/tcg/cpu-exec.c
··· 16 16 * You should have received a copy of the GNU Lesser General Public 17 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 18 18 */ 19 + 19 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 20 22 #include "cpu.h" 21 23 #include "trace.h" 22 24 #include "disas/disas.h"
+1
accel/tcg/translate-all.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 22 23 #define NO_CPU_IO_DEFS 23 24 #include "cpu.h"
-1
accel/tcg/translator.c
··· 8 8 */ 9 9 10 10 #include "qemu/osdep.h" 11 - #include "qemu-common.h" 12 11 #include "qemu/error-report.h" 13 12 #include "cpu.h" 14 13 #include "tcg/tcg.h"
-1
accel/tcg/user-exec-stub.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qom/cpu.h" 4 3 #include "sysemu/replay.h" 5 4 #include "sysemu/sysemu.h"
-1
arch_init.c
··· 22 22 * THE SOFTWARE. 23 23 */ 24 24 #include "qemu/osdep.h" 25 - #include "qemu-common.h" 26 25 #include "cpu.h" 27 26 #include "sysemu/sysemu.h" 28 27 #include "sysemu/arch_init.h"
-1
audio/audio_legacy.c
··· 24 24 #include "qemu/osdep.h" 25 25 #include "audio.h" 26 26 #include "audio_int.h" 27 - #include "qemu-common.h" 28 27 #include "qemu/cutils.h" 29 28 #include "qemu/timer.h" 30 29 #include "qapi/error.h"
-1
audio/audio_pt_int.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "audio.h" 4 3 5 4 #define AUDIO_CAP "audio-pt"
-1
audio/mixeng.c
··· 23 23 * THE SOFTWARE. 24 24 */ 25 25 #include "qemu/osdep.h" 26 - #include "qemu-common.h" 27 26 #include "qemu/bswap.h" 28 27 #include "qemu/error-report.h" 29 28 #include "audio.h"
-1
balloon.c
··· 25 25 */ 26 26 27 27 #include "qemu/osdep.h" 28 - #include "qemu-common.h" 29 28 #include "qemu/atomic.h" 30 29 #include "exec/cpu-common.h" 31 30 #include "sysemu/kvm.h"
-1
block/bochs.c
··· 24 24 */ 25 25 #include "qemu/osdep.h" 26 26 #include "qapi/error.h" 27 - #include "qemu-common.h" 28 27 #include "block/block_int.h" 29 28 #include "qemu/module.h" 30 29 #include "qemu/bswap.h"
-1
block/cloop.c
··· 24 24 #include "qemu/osdep.h" 25 25 #include "qapi/error.h" 26 26 #include "qemu/error-report.h" 27 - #include "qemu-common.h" 28 27 #include "block/block_int.h" 29 28 #include "qemu/module.h" 30 29 #include "qemu/bswap.h"
-1
block/dirty-bitmap.c
··· 23 23 */ 24 24 #include "qemu/osdep.h" 25 25 #include "qapi/error.h" 26 - #include "qemu-common.h" 27 26 #include "trace.h" 28 27 #include "block/block_int.h" 29 28 #include "block/blockjob.h"
-1
block/dmg-bz2.c
··· 23 23 * THE SOFTWARE. 24 24 */ 25 25 #include "qemu/osdep.h" 26 - #include "qemu-common.h" 27 26 #include "dmg.h" 28 27 #include <bzlib.h> 29 28
-1
block/dmg.c
··· 23 23 */ 24 24 #include "qemu/osdep.h" 25 25 #include "qapi/error.h" 26 - #include "qemu-common.h" 27 26 #include "block/block_int.h" 28 27 #include "qemu/bswap.h" 29 28 #include "qemu/error-report.h"
-1
block/dmg.h
··· 26 26 #ifndef BLOCK_DMG_H 27 27 #define BLOCK_DMG_H 28 28 29 - #include "qemu-common.h" 30 29 #include "block/block_int.h" 31 30 #include <zlib.h> 32 31
+1
block/file-posix.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qapi/error.h" 27 28 #include "qemu/cutils.h" 28 29 #include "qemu/error-report.h"
+1
block/iscsi.c
··· 28 28 #include <poll.h> 29 29 #include <math.h> 30 30 #include <arpa/inet.h> 31 + #include "qemu-common.h" 31 32 #include "qemu/config-file.h" 32 33 #include "qemu/error-report.h" 33 34 #include "qemu/bitops.h"
-1
block/linux-aio.c
··· 8 8 * See the COPYING file in the top-level directory. 9 9 */ 10 10 #include "qemu/osdep.h" 11 - #include "qemu-common.h" 12 11 #include "block/aio.h" 13 12 #include "qemu/queue.h" 14 13 #include "block/block.h"
-1
block/nbd-client.h
··· 1 1 #ifndef NBD_CLIENT_H 2 2 #define NBD_CLIENT_H 3 3 4 - #include "qemu-common.h" 5 4 #include "block/nbd.h" 6 5 #include "block/block_int.h" 7 6 #include "io/channel-socket.h"
+1
block/qapi.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "block/qapi.h" 27 28 #include "block/block_int.h" 28 29 #include "block/throttle-groups.h"
-1
block/qcow2-cache.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 - #include "qemu-common.h" 27 26 #include "qcow2.h" 28 27 #include "trace.h" 29 28
-1
block/qcow2-cluster.c
··· 26 26 #include <zlib.h> 27 27 28 28 #include "qapi/error.h" 29 - #include "qemu-common.h" 30 29 #include "qcow2.h" 31 30 #include "qemu/bswap.h" 32 31 #include "trace.h"
-1
block/qcow2-refcount.c
··· 24 24 25 25 #include "qemu/osdep.h" 26 26 #include "qapi/error.h" 27 - #include "qemu-common.h" 28 27 #include "qcow2.h" 29 28 #include "qemu/range.h" 30 29 #include "qemu/bswap.h"
+1
block/sheepdog.c
··· 13 13 */ 14 14 15 15 #include "qemu/osdep.h" 16 + #include "qemu-common.h" 16 17 #include "qapi/error.h" 17 18 #include "qapi/qapi-visit-sockets.h" 18 19 #include "qapi/qapi-visit-block-core.h"
-1
block/vhdx-endian.c
··· 16 16 */ 17 17 18 18 #include "qemu/osdep.h" 19 - #include "qemu-common.h" 20 19 #include "block/block_int.h" 21 20 #include "qemu/bswap.h" 22 21 #include "vhdx.h"
-1
blockjob.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 - #include "qemu-common.h" 28 27 #include "block/block.h" 29 28 #include "block/blockjob_int.h" 30 29 #include "block/block_int.h"
+1
bsd-user/main.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu/units.h" 22 23 #include "sysemu/tcg.h" 23 24 #include "qemu-version.h"
-1
bt-vhci.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "sysemu/bt.h" 23 22 #include "hw/bt.h" 24 23 #include "qemu/main-loop.h"
+1
chardev/char-fd.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qemu/module.h" 27 28 #include "qemu/sockets.h" 28 29 #include "qapi/error.h"
+1
chardev/char-pipe.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qapi/error.h" 27 28 #include "qemu/module.h" 28 29 #include "qemu/option.h"
+1
chardev/char-pty.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qapi/error.h" 27 28 #include "chardev/char.h" 28 29 #include "io/channel-file.h"
-1
contrib/ivshmem-client/ivshmem-client.c
··· 10 10 #include <sys/socket.h> 11 11 #include <sys/un.h> 12 12 13 - #include "qemu-common.h" 14 13 #include "qemu/queue.h" 15 14 16 15 #include "ivshmem-client.h"
-1
contrib/ivshmem-client/main.c
··· 7 7 */ 8 8 9 9 #include "qemu/osdep.h" 10 - #include "qemu-common.h" 11 10 12 11 #include "ivshmem-client.h" 13 12
-1
contrib/ivshmem-server/ivshmem-server.c
··· 6 6 * top-level directory. 7 7 */ 8 8 #include "qemu/osdep.h" 9 - #include "qemu-common.h" 10 9 #include "qemu/host-utils.h" 11 10 #include "qemu/sockets.h" 12 11
+1
cpus.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qemu/config-file.h" 27 28 #include "cpu.h" 28 29 #include "monitor/monitor.h"
-1
crypto/aes.c
··· 28 28 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 29 */ 30 30 #include "qemu/osdep.h" 31 - #include "qemu-common.h" 32 31 #include "crypto/aes.h" 33 32 34 33 typedef uint32_t u32;
-1
disas.c
··· 1 1 /* General "disassemble this chunk" code. Used for debugging. */ 2 2 #include "qemu/osdep.h" 3 - #include "qemu-common.h" 4 3 #include "disas/dis-asm.h" 5 4 #include "elf.h" 6 5 #include "qemu/qemu-print.h"
-1
disas/cris.c
··· 19 19 along with this program; if not, see <http://www.gnu.org/licenses/>. */ 20 20 21 21 #include "qemu/osdep.h" 22 - #include "qemu-common.h" 23 22 #include "disas/dis-asm.h" 24 23 #include "target/cris/opcode-cris.h" 25 24
-1
disas/i386.c
··· 153 153 #define MAX_REG_NAME_SIZE 8 154 154 155 155 /* opcodes/i386-dis.c r1.126 */ 156 - #include "qemu-common.h" 157 156 158 157 static int fetch_data2(struct disassemble_info *, bfd_byte *); 159 158 static int fetch_data(struct disassemble_info *, bfd_byte *);
-1
disas/s390.c
··· 21 21 02110-1301, USA. */ 22 22 23 23 #include "qemu/osdep.h" 24 - #include "qemu-common.h" 25 24 #include "disas/dis-asm.h" 26 25 27 26 /* include/opcode/s390.h revision 1.9 */
+1
dump.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 + #include "qemu-common.h" 15 16 #include "qemu/cutils.h" 16 17 #include "elf.h" 17 18 #include "cpu.h"
+1
exec.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qapi/error.h" 22 23 23 24 #include "qemu/cutils.h"
+1
gdbstub.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qapi/error.h" 22 23 #include "qemu/error-report.h" 23 24 #include "qemu/ctype.h"
-1
hmp.h
··· 14 14 #ifndef HMP_H 15 15 #define HMP_H 16 16 17 - #include "qemu-common.h" 18 17 #include "qemu/readline.h" 19 18 20 19 void hmp_info_name(Monitor *mon, const QDict *qdict);
+1
hw/9pfs/9p-proxy.c
··· 13 13 #include "qemu/osdep.h" 14 14 #include <sys/socket.h> 15 15 #include <sys/un.h> 16 + #include "qemu-common.h" 16 17 #include "9p.h" 17 18 #include "qapi/error.h" 18 19 #include "qemu/cutils.h"
-1
hw/9pfs/coth.c
··· 13 13 */ 14 14 15 15 #include "qemu/osdep.h" 16 - #include "qemu-common.h" 17 16 #include "block/thread-pool.h" 18 17 #include "qemu/coroutine.h" 19 18 #include "coth.h"
-1
hw/acpi/bios-linker-loader.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 - #include "qemu-common.h" 23 22 #include "hw/acpi/bios-linker-loader.h" 24 23 #include "hw/nvram/fw_cfg.h" 25 24
-1
hw/acpi/tco.c
··· 7 7 * See the COPYING file in the top-level directory. 8 8 */ 9 9 #include "qemu/osdep.h" 10 - #include "qemu-common.h" 11 10 #include "sysemu/watchdog.h" 12 11 #include "hw/i386/ich9.h" 13 12
-1
hw/alpha/pci.c
··· 7 7 */ 8 8 9 9 #include "qemu/osdep.h" 10 - #include "qemu-common.h" 11 10 #include "alpha_sys.h" 12 11 #include "qemu/log.h" 13 12 #include "sysemu/sysemu.h"
-1
hw/arm/aspeed.c
··· 11 11 12 12 #include "qemu/osdep.h" 13 13 #include "qapi/error.h" 14 - #include "qemu-common.h" 15 14 #include "cpu.h" 16 15 #include "exec/address-spaces.h" 17 16 #include "hw/arm/boot.h"
+1
hw/arm/boot.c
··· 8 8 */ 9 9 10 10 #include "qemu/osdep.h" 11 + #include "qemu-common.h" 11 12 #include "qemu/error-report.h" 12 13 #include "qapi/error.h" 13 14 #include <libfdt.h>
-1
hw/arm/cubieboard.c
··· 17 17 18 18 #include "qemu/osdep.h" 19 19 #include "qapi/error.h" 20 - #include "qemu-common.h" 21 20 #include "cpu.h" 22 21 #include "hw/sysbus.h" 23 22 #include "hw/boards.h"
-1
hw/arm/exynos4210.c
··· 23 23 24 24 #include "qemu/osdep.h" 25 25 #include "qapi/error.h" 26 - #include "qemu-common.h" 27 26 #include "qemu/log.h" 28 27 #include "cpu.h" 29 28 #include "hw/cpu/a9mpcore.h"
-1
hw/arm/exynos4_boards.c
··· 25 25 #include "qemu/units.h" 26 26 #include "qapi/error.h" 27 27 #include "qemu/error-report.h" 28 - #include "qemu-common.h" 29 28 #include "cpu.h" 30 29 #include "sysemu/sysemu.h" 31 30 #include "hw/sysbus.h"
-1
hw/arm/fsl-imx25.c
··· 24 24 25 25 #include "qemu/osdep.h" 26 26 #include "qapi/error.h" 27 - #include "qemu-common.h" 28 27 #include "cpu.h" 29 28 #include "hw/arm/fsl-imx25.h" 30 29 #include "sysemu/sysemu.h"
-1
hw/arm/fsl-imx31.c
··· 21 21 22 22 #include "qemu/osdep.h" 23 23 #include "qapi/error.h" 24 - #include "qemu-common.h" 25 24 #include "cpu.h" 26 25 #include "hw/arm/fsl-imx31.h" 27 26 #include "sysemu/sysemu.h"
+1
hw/arm/highbank.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qapi/error.h" 22 23 #include "hw/sysbus.h" 23 24 #include "hw/arm/boot.h"
-1
hw/arm/imx25_pdk.c
··· 25 25 26 26 #include "qemu/osdep.h" 27 27 #include "qapi/error.h" 28 - #include "qemu-common.h" 29 28 #include "cpu.h" 30 29 #include "hw/arm/fsl-imx25.h" 31 30 #include "hw/boards.h"
-1
hw/arm/integratorcp.c
··· 9 9 10 10 #include "qemu/osdep.h" 11 11 #include "qapi/error.h" 12 - #include "qemu-common.h" 13 12 #include "cpu.h" 14 13 #include "hw/sysbus.h" 15 14 #include "hw/boards.h"
-1
hw/arm/kzm.c
··· 15 15 16 16 #include "qemu/osdep.h" 17 17 #include "qapi/error.h" 18 - #include "qemu-common.h" 19 18 #include "cpu.h" 20 19 #include "hw/arm/fsl-imx31.h" 21 20 #include "hw/boards.h"
-1
hw/arm/mcimx6ul-evk.c
··· 12 12 13 13 #include "qemu/osdep.h" 14 14 #include "qapi/error.h" 15 - #include "qemu-common.h" 16 15 #include "hw/arm/fsl-imx6ul.h" 17 16 #include "hw/boards.h" 18 17 #include "sysemu/sysemu.h"
-1
hw/arm/mcimx7d-sabre.c
··· 14 14 15 15 #include "qemu/osdep.h" 16 16 #include "qapi/error.h" 17 - #include "qemu-common.h" 18 17 #include "hw/arm/fsl-imx7.h" 19 18 #include "hw/boards.h" 20 19 #include "sysemu/sysemu.h"
-1
hw/arm/msf2-soc.c
··· 25 25 #include "qemu/osdep.h" 26 26 #include "qemu/units.h" 27 27 #include "qapi/error.h" 28 - #include "qemu-common.h" 29 28 #include "exec/address-spaces.h" 30 29 #include "hw/char/serial.h" 31 30 #include "hw/boards.h"
-1
hw/arm/musicpal.c
··· 11 11 12 12 #include "qemu/osdep.h" 13 13 #include "qapi/error.h" 14 - #include "qemu-common.h" 15 14 #include "cpu.h" 16 15 #include "hw/sysbus.h" 17 16 #include "hw/arm/boot.h"
-1
hw/arm/nrf51_soc.c
··· 10 10 11 11 #include "qemu/osdep.h" 12 12 #include "qapi/error.h" 13 - #include "qemu-common.h" 14 13 #include "hw/arm/boot.h" 15 14 #include "hw/sysbus.h" 16 15 #include "hw/boards.h"
-1
hw/arm/omap2.c
··· 21 21 #include "qemu/osdep.h" 22 22 #include "qemu/error-report.h" 23 23 #include "qapi/error.h" 24 - #include "qemu-common.h" 25 24 #include "cpu.h" 26 25 #include "sysemu/qtest.h" 27 26 #include "hw/boards.h"
+1
hw/arm/pxa2xx.c
··· 8 8 */ 9 9 10 10 #include "qemu/osdep.h" 11 + #include "qemu-common.h" 11 12 #include "qemu/error-report.h" 12 13 #include "qemu/module.h" 13 14 #include "qapi/error.h"
-1
hw/arm/raspi.c
··· 14 14 #include "qemu/osdep.h" 15 15 #include "qemu/units.h" 16 16 #include "qapi/error.h" 17 - #include "qemu-common.h" 18 17 #include "cpu.h" 19 18 #include "hw/arm/bcm2836.h" 20 19 #include "qemu/error-report.h"
-1
hw/arm/realview.c
··· 9 9 10 10 #include "qemu/osdep.h" 11 11 #include "qapi/error.h" 12 - #include "qemu-common.h" 13 12 #include "cpu.h" 14 13 #include "hw/sysbus.h" 15 14 #include "hw/arm/boot.h"
-1
hw/arm/sabrelite.c
··· 12 12 13 13 #include "qemu/osdep.h" 14 14 #include "qapi/error.h" 15 - #include "qemu-common.h" 16 15 #include "hw/arm/fsl-imx6.h" 17 16 #include "hw/boards.h" 18 17 #include "sysemu/sysemu.h"
+1
hw/arm/strongarm.c
··· 28 28 */ 29 29 30 30 #include "qemu/osdep.h" 31 + #include "qemu-common.h" 31 32 #include "cpu.h" 32 33 #include "hw/boards.h" 33 34 #include "hw/sysbus.h"
-1
hw/arm/sysbus-fdt.c
··· 24 24 #include "qemu/osdep.h" 25 25 #include "qapi/error.h" 26 26 #include <libfdt.h> 27 - #include "qemu-common.h" 28 27 #ifdef CONFIG_LINUX 29 28 #include <linux/vfio.h> 30 29 #endif
-1
hw/arm/versatilepb.c
··· 9 9 10 10 #include "qemu/osdep.h" 11 11 #include "qapi/error.h" 12 - #include "qemu-common.h" 13 12 #include "cpu.h" 14 13 #include "hw/sysbus.h" 15 14 #include "hw/arm/boot.h"
-1
hw/arm/virt-acpi-build.c
··· 28 28 29 29 #include "qemu/osdep.h" 30 30 #include "qapi/error.h" 31 - #include "qemu-common.h" 32 31 #include "qemu/bitmap.h" 33 32 #include "trace.h" 34 33 #include "qom/cpu.h"
+1
hw/arm/virt.c
··· 29 29 */ 30 30 31 31 #include "qemu/osdep.h" 32 + #include "qemu-common.h" 32 33 #include "qemu/units.h" 33 34 #include "qemu/option.h" 34 35 #include "qapi/error.h"
-1
hw/arm/xilinx_zynq.c
··· 17 17 18 18 #include "qemu/osdep.h" 19 19 #include "qapi/error.h" 20 - #include "qemu-common.h" 21 20 #include "cpu.h" 22 21 #include "hw/sysbus.h" 23 22 #include "hw/arm/boot.h"
-1
hw/arm/xlnx-zcu102.c
··· 17 17 18 18 #include "qemu/osdep.h" 19 19 #include "qapi/error.h" 20 - #include "qemu-common.h" 21 20 #include "cpu.h" 22 21 #include "hw/arm/xlnx-zynqmp.h" 23 22 #include "hw/boards.h"
-1
hw/audio/soundhw.c
··· 22 22 * THE SOFTWARE. 23 23 */ 24 24 #include "qemu/osdep.h" 25 - #include "qemu-common.h" 26 25 #include "qemu/help_option.h" 27 26 #include "qemu/error-report.h" 28 27 #include "qom/object.h"
-1
hw/block/cdrom.c
··· 26 26 here. */ 27 27 28 28 #include "qemu/osdep.h" 29 - #include "qemu-common.h" 30 29 #include "hw/scsi/scsi.h" 31 30 32 31 static void lba_to_msf(uint8_t *buf, int lba)
-1
hw/bt/core.c
··· 19 19 20 20 #include "qemu/osdep.h" 21 21 #include "qemu/error-report.h" 22 - #include "qemu-common.h" 23 22 #include "sysemu/bt.h" 24 23 #include "hw/bt.h" 25 24
-1
hw/bt/hci.c
··· 21 21 #include "qemu/osdep.h" 22 22 #include "qemu/error-report.h" 23 23 #include "qapi/error.h" 24 - #include "qemu-common.h" 25 24 #include "qemu/timer.h" 26 25 #include "hw/usb.h" 27 26 #include "sysemu/bt.h"
-1
hw/bt/hid.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 - #include "qemu-common.h" 23 22 #include "qemu/timer.h" 24 23 #include "ui/console.h" 25 24 #include "hw/input/hid.h"
-1
hw/bt/l2cap.c
··· 19 19 20 20 #include "qemu/osdep.h" 21 21 #include "qemu/error-report.h" 22 - #include "qemu-common.h" 23 22 #include "qemu/timer.h" 24 23 #include "qemu/bswap.h" 25 24 #include "hw/bt.h"
-1
hw/bt/sdp.c
··· 19 19 20 20 #include "qemu/osdep.h" 21 21 #include "qemu/error-report.h" 22 - #include "qemu-common.h" 23 22 #include "qemu/host-utils.h" 24 23 #include "hw/bt.h" 25 24
-1
hw/core/irq.c
··· 23 23 */ 24 24 #include "qemu/osdep.h" 25 25 #include "qemu/main-loop.h" 26 - #include "qemu-common.h" 27 26 #include "hw/irq.h" 28 27 #include "qom/object.h" 29 28
+1
hw/core/loader.c
··· 43 43 */ 44 44 45 45 #include "qemu/osdep.h" 46 + #include "qemu-common.h" 46 47 #include "qapi/error.h" 47 48 #include "hw/hw.h" 48 49 #include "disas/disas.h"
-1
hw/core/null-machine.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 - #include "qemu-common.h" 16 15 #include "qemu/error-report.h" 17 16 #include "hw/hw.h" 18 17 #include "hw/boards.h"
-1
hw/cris/axis_dev88.c
··· 25 25 #include "qemu/osdep.h" 26 26 #include "qemu/units.h" 27 27 #include "qapi/error.h" 28 - #include "qemu-common.h" 29 28 #include "cpu.h" 30 29 #include "hw/sysbus.h" 31 30 #include "net/net.h"
-1
hw/cris/boot.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 - #include "qemu-common.h" 27 26 #include "cpu.h" 28 27 #include "hw/hw.h" 29 28 #include "hw/loader.h"
-1
hw/display/blizzard.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 - #include "qemu-common.h" 23 22 #include "ui/console.h" 24 23 #include "hw/display/blizzard.h" 25 24 #include "ui/pixel_ops.h"
+1
hw/display/cg3.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 + #include "qemu-common.h" 27 28 #include "qapi/error.h" 28 29 #include "qemu/error-report.h" 29 30 #include "ui/console.h"
-1
hw/display/edid-generate.c
··· 5 5 * See the COPYING file in the top-level directory. 6 6 */ 7 7 #include "qemu/osdep.h" 8 - #include "qemu-common.h" 9 8 #include "qemu/bswap.h" 10 9 #include "hw/display/edid.h" 11 10
-1
hw/display/edid-region.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "hw/display/edid.h" 4 3 5 4 static uint64_t edid_region_read(void *ptr, hwaddr addr, unsigned size)
-1
hw/display/qxl.h
··· 1 1 #ifndef HW_QXL_H 2 2 #define HW_QXL_H 3 3 4 - #include "qemu-common.h" 5 4 6 5 #include "hw/hw.h" 7 6 #include "hw/pci/pci.h"
+1
hw/display/tcx.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qapi/error.h" 27 28 #include "ui/console.h" 28 29 #include "ui/pixel_ops.h"
-1
hw/display/virtio-gpu-3d.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 - #include "qemu-common.h" 16 15 #include "qemu/iov.h" 17 16 #include "trace.h" 18 17 #include "hw/virtio/virtio.h"
-1
hw/dma/etraxfs_dma.c
··· 24 24 #include "qemu/osdep.h" 25 25 #include "hw/hw.h" 26 26 #include "exec/address-spaces.h" 27 - #include "qemu-common.h" 28 27 #include "sysemu/sysemu.h" 29 28 30 29 #include "hw/cris/etraxfs_dma.h"
-1
hw/dma/omap_dma.c
··· 19 19 */ 20 20 #include "qemu/osdep.h" 21 21 #include "qemu/log.h" 22 - #include "qemu-common.h" 23 22 #include "qemu/timer.h" 24 23 #include "hw/arm/omap.h" 25 24 #include "hw/irq.h"
+1
hw/dma/pl330.c
··· 15 15 */ 16 16 17 17 #include "qemu/osdep.h" 18 + #include "qemu-common.h" 18 19 #include "hw/sysbus.h" 19 20 #include "qapi/error.h" 20 21 #include "qemu/timer.h"
-1
hw/dma/soc_dma.c
··· 19 19 */ 20 20 #include "qemu/osdep.h" 21 21 #include "qemu/error-report.h" 22 - #include "qemu-common.h" 23 22 #include "qemu/timer.h" 24 23 #include "hw/arm/soc_dma.h" 25 24
+1
hw/dma/xlnx_dpdma.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qemu/log.h" 27 28 #include "qemu/module.h" 28 29 #include "hw/dma/xlnx_dpdma.h"
-1
hw/hppa/pci.c
··· 4 4 */ 5 5 6 6 #include "qemu/osdep.h" 7 - #include "qemu-common.h" 8 7 #include "hppa_sys.h" 9 8 #include "qemu/log.h" 10 9 #include "sysemu/sysemu.h"
-1
hw/i386/acpi-build.c
··· 24 24 #include "qapi/error.h" 25 25 #include "qapi/qmp/qnum.h" 26 26 #include "acpi-build.h" 27 - #include "qemu-common.h" 28 27 #include "qemu/bitmap.h" 29 28 #include "qemu/error-report.h" 30 29 #include "hw/pci/pci.h"
+1
hw/i386/pc_sysfw.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 + #include "qemu-common.h" 27 28 #include "qapi/error.h" 28 29 #include "sysemu/block-backend.h" 29 30 #include "qemu/error-report.h"
-1
hw/intc/apic.c
··· 17 17 * License along with this library; if not, see <http://www.gnu.org/licenses/> 18 18 */ 19 19 #include "qemu/osdep.h" 20 - #include "qemu-common.h" 21 20 #include "cpu.h" 22 21 #include "qemu/thread.h" 23 22 #include "hw/i386/apic_internal.h"
-1
hw/intc/sh_intc.c
··· 9 9 */ 10 10 11 11 #include "qemu/osdep.h" 12 - #include "qemu-common.h" 13 12 #include "cpu.h" 14 13 #include "hw/sh4/sh_intc.h" 15 14 #include "hw/hw.h"
-1
hw/isa/lpc_ich9.c
··· 28 28 * THE SOFTWARE. 29 29 */ 30 30 #include "qemu/osdep.h" 31 - #include "qemu-common.h" 32 31 #include "cpu.h" 33 32 #include "hw/hw.h" 34 33 #include "qapi/visitor.h"
-1
hw/lm32/lm32_boards.c
··· 20 20 #include "qemu/osdep.h" 21 21 #include "qemu/units.h" 22 22 #include "qemu/error-report.h" 23 - #include "qemu-common.h" 24 23 #include "cpu.h" 25 24 #include "hw/sysbus.h" 26 25 #include "hw/hw.h"
-1
hw/lm32/lm32_hwsetup.h
··· 25 25 #ifndef QEMU_HW_LM32_HWSETUP_H 26 26 #define QEMU_HW_LM32_HWSETUP_H 27 27 28 - #include "qemu-common.h" 29 28 #include "qemu/cutils.h" 30 29 #include "hw/loader.h" 31 30
-1
hw/m68k/an5206.c
··· 8 8 9 9 #include "qemu/osdep.h" 10 10 #include "qapi/error.h" 11 - #include "qemu-common.h" 12 11 #include "cpu.h" 13 12 #include "hw/hw.h" 14 13 #include "hw/m68k/mcf.h"
-1
hw/m68k/mcf5206.c
··· 7 7 */ 8 8 #include "qemu/osdep.h" 9 9 #include "qemu/error-report.h" 10 - #include "qemu-common.h" 11 10 #include "cpu.h" 12 11 #include "hw/hw.h" 13 12 #include "hw/m68k/mcf.h"
-1
hw/microblaze/petalogix_ml605_mmu.c
··· 28 28 #include "qemu/osdep.h" 29 29 #include "qemu/units.h" 30 30 #include "qapi/error.h" 31 - #include "qemu-common.h" 32 31 #include "cpu.h" 33 32 #include "hw/sysbus.h" 34 33 #include "hw/hw.h"
-1
hw/microblaze/petalogix_s3adsp1800_mmu.c
··· 26 26 #include "qemu/osdep.h" 27 27 #include "qemu/units.h" 28 28 #include "qapi/error.h" 29 - #include "qemu-common.h" 30 29 #include "cpu.h" 31 30 #include "hw/sysbus.h" 32 31 #include "hw/hw.h"
-1
hw/microblaze/xlnx-zynqmp-pmu.c
··· 17 17 18 18 #include "qemu/osdep.h" 19 19 #include "qapi/error.h" 20 - #include "qemu-common.h" 21 20 #include "exec/address-spaces.h" 22 21 #include "hw/boards.h" 23 22 #include "hw/qdev-properties.h"
-1
hw/mips/boston.c
··· 19 19 20 20 #include "qemu/osdep.h" 21 21 #include "qemu/units.h" 22 - #include "qemu-common.h" 23 22 24 23 #include "exec/address-spaces.h" 25 24 #include "hw/boards.h"
+1
hw/mips/mips_fulong2e.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 + #include "qemu-common.h" 22 23 #include "qemu/units.h" 23 24 #include "qapi/error.h" 24 25 #include "cpu.h"
+1
hw/mips/mips_jazz.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "hw/hw.h" 27 28 #include "hw/mips/mips.h" 28 29 #include "hw/mips/cpudevs.h"
+1
hw/misc/macio/cuda.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 + #include "qemu-common.h" 27 28 #include "hw/hw.h" 28 29 #include "hw/ppc/mac.h" 29 30 #include "hw/input/adb.h"
+1
hw/misc/macio/pmu.c
··· 29 29 */ 30 30 31 31 #include "qemu/osdep.h" 32 + #include "qemu-common.h" 32 33 #include "hw/hw.h" 33 34 #include "hw/ppc/mac.h" 34 35 #include "hw/input/adb.h"
-1
hw/moxie/moxiesim.c
··· 27 27 #include "qemu/osdep.h" 28 28 #include "qemu/error-report.h" 29 29 #include "qapi/error.h" 30 - #include "qemu-common.h" 31 30 #include "cpu.h" 32 31 #include "hw/sysbus.h" 33 32 #include "hw/hw.h"
-1
hw/net/rocker/qmp-norocker.c
··· 16 16 */ 17 17 18 18 #include "qemu/osdep.h" 19 - #include "qemu-common.h" 20 19 #include "qapi/error.h" 21 20 #include "qapi/qapi-commands-rocker.h" 22 21 #include "qapi/qmp/qerror.h"
-1
hw/nios2/10m50_devboard.c
··· 24 24 25 25 #include "qemu/osdep.h" 26 26 #include "qapi/error.h" 27 - #include "qemu-common.h" 28 27 #include "cpu.h" 29 28 30 29 #include "hw/sysbus.h"
-1
hw/nios2/cpu_pic.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 - #include "qemu-common.h" 23 22 #include "cpu.h" 24 23 25 24 #include "qemu/config-file.h"
+1
hw/nvram/fw_cfg.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "hw/hw.h" 27 28 #include "sysemu/sysemu.h" 28 29 #include "sysemu/dma.h"
-1
hw/openrisc/openrisc_sim.c
··· 21 21 #include "qemu/osdep.h" 22 22 #include "qemu/error-report.h" 23 23 #include "qapi/error.h" 24 - #include "qemu-common.h" 25 24 #include "cpu.h" 26 25 #include "hw/hw.h" 27 26 #include "hw/boards.h"
-1
hw/pci-bridge/dec.h
··· 1 1 #ifndef HW_PCI_BRIDGE_DEC_H 2 2 #define HW_PCI_BRIDGE_DEC_H 3 3 4 - #include "qemu-common.h" 5 4 6 5 #define TYPE_DEC_21154 "dec-21154-sysbus" 7 6
+1
hw/pci-host/prep.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 + #include "qemu-common.h" 27 28 #include "qemu/units.h" 28 29 #include "qapi/error.h" 29 30 #include "hw/hw.h"
+1
hw/pci/pci.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "hw/hw.h" 27 28 #include "hw/pci/pci.h" 28 29 #include "hw/pci/pci_bridge.h"
-1
hw/pci/pcie.c
··· 20 20 21 21 #include "qemu/osdep.h" 22 22 #include "qapi/error.h" 23 - #include "qemu-common.h" 24 23 #include "hw/pci/pci_bridge.h" 25 24 #include "hw/pci/pcie.h" 26 25 #include "hw/pci/msix.h"
-1
hw/pci/shpc.c
··· 1 1 #include "qemu/osdep.h" 2 2 #include "qapi/error.h" 3 - #include "qemu-common.h" 4 3 #include "qemu/host-utils.h" 5 4 #include "qemu/range.h" 6 5 #include "qemu/error-report.h"
+1
hw/ppc/e500.c
··· 15 15 */ 16 16 17 17 #include "qemu/osdep.h" 18 + #include "qemu-common.h" 18 19 #include "qemu/units.h" 19 20 #include "qapi/error.h" 20 21 #include "e500.h"
-1
hw/ppc/e500plat.c
··· 11 11 12 12 #include "qemu/osdep.h" 13 13 #include "qemu/units.h" 14 - #include "qemu-common.h" 15 14 #include "e500.h" 16 15 #include "hw/net/fsl_etsec/etsec.h" 17 16 #include "hw/boards.h"
+2 -1
hw/ppc/mac_newworld.c
··· 44 44 * 0001:03:0e.0 FireWire (IEEE 1394) [0c00]: Apple Computer Inc. K2 FireWire [106b:0042] 45 45 * 0001:04:0f.0 Ethernet controller [0200]: Apple Computer Inc. K2 GMAC (Sun GEM) [106b:004c] 46 46 * 0001:05:0c.0 IDE interface [0101]: Broadcom K2 SATA [1166:0240] 47 - * 48 47 */ 48 + 49 49 #include "qemu/osdep.h" 50 + #include "qemu-common.h" 50 51 #include "qapi/error.h" 51 52 #include "hw/hw.h" 52 53 #include "hw/ppc/ppc.h"
+2
hw/ppc/mac_oldworld.c
··· 23 23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 24 * THE SOFTWARE. 25 25 */ 26 + 26 27 #include "qemu/osdep.h" 28 + #include "qemu-common.h" 27 29 #include "qemu/units.h" 28 30 #include "qapi/error.h" 29 31 #include "hw/hw.h"
-1
hw/ppc/mpc8544ds.c
··· 10 10 */ 11 11 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "e500.h" 15 14 #include "hw/boards.h" 16 15 #include "sysemu/device_tree.h"
+1
hw/ppc/pnv.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu/units.h" 22 23 #include "qapi/error.h" 23 24 #include "sysemu/sysemu.h"
-1
hw/ppc/ppc.c
··· 22 22 * THE SOFTWARE. 23 23 */ 24 24 #include "qemu/osdep.h" 25 - #include "qemu-common.h" 26 25 #include "cpu.h" 27 26 #include "hw/hw.h" 28 27 #include "hw/ppc/ppc.h"
-1
hw/ppc/ppc405_uc.c
··· 24 24 #include "qemu/osdep.h" 25 25 #include "qemu/units.h" 26 26 #include "qapi/error.h" 27 - #include "qemu-common.h" 28 27 #include "cpu.h" 29 28 #include "hw/hw.h" 30 29 #include "hw/ppc/ppc.h"
-1
hw/ppc/ppc_booke.c
··· 22 22 * THE SOFTWARE. 23 23 */ 24 24 #include "qemu/osdep.h" 25 - #include "qemu-common.h" 26 25 #include "cpu.h" 27 26 #include "hw/hw.h" 28 27 #include "hw/ppc/ppc.h"
+2 -1
hw/ppc/spapr.c
··· 22 22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 24 * THE SOFTWARE. 25 - * 26 25 */ 26 + 27 27 #include "qemu/osdep.h" 28 + #include "qemu-common.h" 28 29 #include "qapi/error.h" 29 30 #include "qapi/visitor.h" 30 31 #include "sysemu/sysemu.h"
-1
hw/ppc/spapr_pci_vfio.c
··· 19 19 20 20 #include "qemu/osdep.h" 21 21 #include <linux/vfio.h> 22 - #include "qemu-common.h" 23 22 #include "cpu.h" 24 23 #include "hw/ppc/spapr.h" 25 24 #include "hw/pci-host/spapr.h"
+1
hw/ppc/spapr_rtc.c
··· 26 26 */ 27 27 28 28 #include "qemu/osdep.h" 29 + #include "qemu-common.h" 29 30 #include "cpu.h" 30 31 #include "qemu/timer.h" 31 32 #include "sysemu/sysemu.h"
+1
hw/ppc/virtex_ml507.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qemu/units.h" 27 28 #include "cpu.h" 28 29 #include "hw/sysbus.h"
+1
hw/s390x/ipl.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 + #include "qemu-common.h" 15 16 #include "qapi/error.h" 16 17 #include "sysemu/sysemu.h" 17 18 #include "sysemu/tcg.h"
-1
hw/s390x/s390-pci-inst.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 - #include "qemu-common.h" 16 15 #include "cpu.h" 17 16 #include "s390-pci-inst.h" 18 17 #include "s390-pci-bus.h"
+1
hw/s390x/tod-qemu.c
··· 9 9 */ 10 10 11 11 #include "qemu/osdep.h" 12 + #include "qemu-common.h" 12 13 #include "qapi/error.h" 13 14 #include "hw/s390x/tod.h" 14 15 #include "qemu/timer.h"
+1
hw/scsi/megasas.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 + #include "qemu-common.h" 22 23 #include "hw/hw.h" 23 24 #include "hw/pci/pci.h" 24 25 #include "sysemu/dma.h"
-1
hw/sh4/r2d.c
··· 26 26 #include "qemu/osdep.h" 27 27 #include "qemu/units.h" 28 28 #include "qapi/error.h" 29 - #include "qemu-common.h" 30 29 #include "cpu.h" 31 30 #include "hw/sysbus.h" 32 31 #include "hw/hw.h"
-1
hw/sh4/shix.c
··· 29 29 */ 30 30 #include "qemu/osdep.h" 31 31 #include "qapi/error.h" 32 - #include "qemu-common.h" 33 32 #include "cpu.h" 34 33 #include "hw/hw.h" 35 34 #include "hw/sh4/sh.h"
-1
hw/sparc64/niagara.c
··· 24 24 25 25 #include "qemu/osdep.h" 26 26 #include "qemu/units.h" 27 - #include "qemu-common.h" 28 27 #include "cpu.h" 29 28 #include "hw/hw.h" 30 29 #include "hw/boards.h"
+1
hw/timer/exynos4210_rtc.c
··· 26 26 */ 27 27 28 28 #include "qemu/osdep.h" 29 + #include "qemu-common.h" 29 30 #include "qemu/log.h" 30 31 #include "qemu/module.h" 31 32 #include "hw/sysbus.h"
+1
hw/timer/m41t80.c
··· 8 8 */ 9 9 10 10 #include "qemu/osdep.h" 11 + #include "qemu-common.h" 11 12 #include "qemu/log.h" 12 13 #include "qemu/module.h" 13 14 #include "qemu/timer.h"
+1
hw/timer/m48t59.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 + #include "qemu-common.h" 27 28 #include "hw/hw.h" 28 29 #include "hw/timer/m48t59.h" 29 30 #include "qemu/timer.h"
+1
hw/timer/mc146818rtc.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qemu/cutils.h" 27 28 #include "qemu/module.h" 28 29 #include "qemu/bcd.h"
+1
hw/timer/pl031.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 + #include "qemu-common.h" 15 16 #include "hw/timer/pl031.h" 16 17 #include "hw/sysbus.h" 17 18 #include "qemu/timer.h"
+1
hw/timer/twl92230.c
··· 20 20 */ 21 21 22 22 #include "qemu/osdep.h" 23 + #include "qemu-common.h" 23 24 #include "hw/hw.h" 24 25 #include "qemu/timer.h" 25 26 #include "hw/i2c/i2c.h"
+1
hw/timer/xlnx-zynqmp-rtc.c
··· 25 25 */ 26 26 27 27 #include "qemu/osdep.h" 28 + #include "qemu-common.h" 28 29 #include "hw/sysbus.h" 29 30 #include "hw/register.h" 30 31 #include "qemu/bitops.h"
+1
hw/tpm/tpm_passthrough.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qemu/error-report.h" 27 28 #include "qemu/module.h" 28 29 #include "qemu/sockets.h"
-1
hw/tricore/tricore_testboard.c
··· 21 21 #include "qemu/osdep.h" 22 22 #include "qemu/units.h" 23 23 #include "qapi/error.h" 24 - #include "qemu-common.h" 25 24 #include "cpu.h" 26 25 #include "hw/hw.h" 27 26 #include "net/net.h"
+1
hw/usb/ccid-card-passthru.c
··· 9 9 */ 10 10 11 11 #include "qemu/osdep.h" 12 + #include "qemu-common.h" 12 13 #include "qemu/units.h" 13 14 #include <libcacard.h> 14 15 #include "chardev/char-fe.h"
-1
hw/usb/combined-packet.c
··· 21 21 */ 22 22 #include "qemu/osdep.h" 23 23 #include "qemu/units.h" 24 - #include "qemu-common.h" 25 24 #include "hw/usb.h" 26 25 #include "qemu/iov.h" 27 26 #include "trace.h"
-1
hw/usb/core.c
··· 24 24 * THE SOFTWARE. 25 25 */ 26 26 #include "qemu/osdep.h" 27 - #include "qemu-common.h" 28 27 #include "hw/usb.h" 29 28 #include "qemu/iov.h" 30 29 #include "trace.h"
+1
hw/usb/dev-mtp.c
··· 10 10 */ 11 11 12 12 #include "qemu/osdep.h" 13 + #include "qemu-common.h" 13 14 #include "qapi/error.h" 14 15 #include "qemu/error-report.h" 15 16 #include <wchar.h>
-1
hw/usb/hcd-musb.c
··· 21 21 * Only host-mode and non-DMA accesses are currently supported. 22 22 */ 23 23 #include "qemu/osdep.h" 24 - #include "qemu-common.h" 25 24 #include "qemu/timer.h" 26 25 #include "hw/usb.h" 27 26 #include "hw/irq.h"
-1
hw/usb/host-stub.c
··· 31 31 */ 32 32 33 33 #include "qemu/osdep.h" 34 - #include "qemu-common.h" 35 34 #include "ui/console.h" 36 35 #include "hw/usb.h" 37 36 #include "monitor/monitor.h"
-1
hw/usb/libhw.c
··· 20 20 * THE SOFTWARE. 21 21 */ 22 22 #include "qemu/osdep.h" 23 - #include "qemu-common.h" 24 23 #include "hw/hw.h" 25 24 #include "hw/usb.h" 26 25 #include "sysemu/dma.h"
+1
hw/usb/redirect.c
··· 26 26 */ 27 27 28 28 #include "qemu/osdep.h" 29 + #include "qemu-common.h" 29 30 #include "qemu/units.h" 30 31 #include "qapi/error.h" 31 32 #include "qemu/timer.h"
-1
hw/vfio/pci.h
··· 12 12 #ifndef HW_VFIO_VFIO_PCI_H 13 13 #define HW_VFIO_VFIO_PCI_H 14 14 15 - #include "qemu-common.h" 16 15 #include "exec/memory.h" 17 16 #include "hw/pci/pci.h" 18 17 #include "hw/vfio/vfio-common.h"
-1
hw/xen/xen-host-pci-device.c
··· 8 8 9 9 #include "qemu/osdep.h" 10 10 #include "qapi/error.h" 11 - #include "qemu-common.h" 12 11 #include "qemu/cutils.h" 13 12 #include "xen-host-pci-device.h" 14 13
-1
hw/xen/xen_pt.h
··· 1 1 #ifndef XEN_PT_H 2 2 #define XEN_PT_H 3 3 4 - #include "qemu-common.h" 5 4 #include "hw/xen/xen_common.h" 6 5 #include "hw/pci/pci.h" 7 6 #include "xen-host-pci-device.h"
-1
hw/xtensa/sim.c
··· 27 27 28 28 #include "qemu/osdep.h" 29 29 #include "qapi/error.h" 30 - #include "qemu-common.h" 31 30 #include "cpu.h" 32 31 #include "sysemu/sysemu.h" 33 32 #include "hw/boards.h"
-1
hw/xtensa/xtensa_memory.c
··· 27 27 28 28 #include "qemu/osdep.h" 29 29 #include "qapi/error.h" 30 - #include "qemu-common.h" 31 30 #include "cpu.h" 32 31 #include "sysemu/sysemu.h" 33 32 #include "hw/boards.h"
-1
hw/xtensa/xtensa_memory.h
··· 28 28 #ifndef XTENSA_MEMORY_H 29 29 #define XTENSA_MEMORY_H 30 30 31 - #include "qemu-common.h" 32 31 #include "cpu.h" 33 32 #include "exec/memory.h" 34 33
-1
include/authz/base.h
··· 21 21 #ifndef QAUTHZ_BASE_H 22 22 #define QAUTHZ_BASE_H 23 23 24 - #include "qemu-common.h" 25 24 #include "qapi/error.h" 26 25 #include "qom/object.h" 27 26
-1
include/block/aio.h
··· 14 14 #ifndef QEMU_AIO_H 15 15 #define QEMU_AIO_H 16 16 17 - #include "qemu-common.h" 18 17 #include "qemu/queue.h" 19 18 #include "qemu/event_notifier.h" 20 19 #include "qemu/thread.h"
-1
include/block/dirty-bitmap.h
··· 1 1 #ifndef BLOCK_DIRTY_BITMAP_H 2 2 #define BLOCK_DIRTY_BITMAP_H 3 3 4 - #include "qemu-common.h" 5 4 #include "qapi/qapi-types-block-core.h" 6 5 #include "qemu/hbitmap.h" 7 6
-1
include/block/write-threshold.h
··· 12 12 #ifndef BLOCK_WRITE_THRESHOLD_H 13 13 #define BLOCK_WRITE_THRESHOLD_H 14 14 15 - #include "qemu-common.h" 16 15 17 16 /* 18 17 * bdrv_write_threshold_set:
-1
include/chardev/char-io.h
··· 24 24 #ifndef CHAR_IO_H 25 25 #define CHAR_IO_H 26 26 27 - #include "qemu-common.h" 28 27 #include "io/channel.h" 29 28 #include "chardev/char.h" 30 29
-1
include/crypto/random.h
··· 21 21 #ifndef QCRYPTO_RANDOM_H 22 22 #define QCRYPTO_RANDOM_H 23 23 24 - #include "qemu-common.h" 25 24 26 25 /** 27 26 * qcrypto_random_bytes:
-1
include/crypto/xts.h
··· 26 26 #ifndef QCRYPTO_XTS_H 27 27 #define QCRYPTO_XTS_H 28 28 29 - #include "qemu-common.h" 30 29 31 30 #define XTS_BLOCK_SIZE 16 32 31
-1
include/disas/disas.h
··· 1 1 #ifndef QEMU_DISAS_H 2 2 #define QEMU_DISAS_H 3 3 4 - #include "qemu-common.h" 5 4 6 5 #ifdef NEED_CPU_H 7 6 #include "cpu.h"
-1
include/exec/cpu-all.h
··· 19 19 #ifndef CPU_ALL_H 20 20 #define CPU_ALL_H 21 21 22 - #include "qemu-common.h" 23 22 #include "exec/cpu-common.h" 24 23 #include "exec/memory.h" 25 24 #include "qemu/thread.h"
-1
include/exec/exec-all.h
··· 20 20 #ifndef EXEC_ALL_H 21 21 #define EXEC_ALL_H 22 22 23 - #include "qemu-common.h" 24 23 #include "exec/tb-context.h" 25 24 #include "sysemu/cpus.h" 26 25
-1
include/hw/acpi/tco.h
··· 9 9 #ifndef HW_ACPI_TCO_H 10 10 #define HW_ACPI_TCO_H 11 11 12 - #include "qemu-common.h" 13 12 14 13 /* As per ICH9 spec, the internal timer has an error of ~0.6s on every tick */ 15 14 #define TCO_TICK_NSEC 600000000LL
-1
include/hw/arm/allwinner-a10.h
··· 1 1 #ifndef ALLWINNER_H_ 2 2 3 - #include "qemu-common.h" 4 3 #include "qemu/error-report.h" 5 4 #include "hw/char/serial.h" 6 5 #include "hw/arm/boot.h"
-1
include/hw/arm/bcm2835_peripherals.h
··· 11 11 #ifndef BCM2835_PERIPHERALS_H 12 12 #define BCM2835_PERIPHERALS_H 13 13 14 - #include "qemu-common.h" 15 14 #include "hw/sysbus.h" 16 15 #include "hw/char/pl011.h" 17 16 #include "hw/char/bcm2835_aux.h"
-1
include/hw/arm/exynos4210.h
··· 25 25 #ifndef EXYNOS4210_H 26 26 #define EXYNOS4210_H 27 27 28 - #include "qemu-common.h" 29 28 #include "exec/memory.h" 30 29 #include "target/arm/cpu-qom.h" 31 30
-1
include/hw/arm/virt.h
··· 30 30 #ifndef QEMU_ARM_VIRT_H 31 31 #define QEMU_ARM_VIRT_H 32 32 33 - #include "qemu-common.h" 34 33 #include "exec/hwaddr.h" 35 34 #include "qemu/notify.h" 36 35 #include "hw/boards.h"
-1
include/hw/arm/xlnx-zynqmp.h
··· 17 17 18 18 #ifndef XLNX_ZYNQMP_H 19 19 20 - #include "qemu-common.h" 21 20 #include "hw/arm/boot.h" 22 21 #include "hw/intc/arm_gic.h" 23 22 #include "hw/net/cadence_gem.h"
-1
include/hw/block/fdc.h
··· 1 1 #ifndef HW_FDC_H 2 2 #define HW_FDC_H 3 3 4 - #include "qemu-common.h" 5 4 #include "qapi/qapi-types-block.h" 6 5 7 6 /* fdc.c */
-1
include/hw/dma/bcm2835_dma.h
··· 6 6 #ifndef BCM2835_DMA_H 7 7 #define BCM2835_DMA_H 8 8 9 - #include "qemu-common.h" 10 9 #include "hw/sysbus.h" 11 10 12 11 typedef struct {
-1
include/hw/fw-path-provider.h
··· 18 18 #ifndef FW_PATH_PROVIDER_H 19 19 #define FW_PATH_PROVIDER_H 20 20 21 - #include "qemu-common.h" 22 21 #include "qom/object.h" 23 22 24 23 #define TYPE_FW_PATH_PROVIDER "fw-path-provider"
-1
include/hw/i2c/ppc4xx_i2c.h
··· 27 27 #ifndef PPC4XX_I2C_H 28 28 #define PPC4XX_I2C_H 29 29 30 - #include "qemu-common.h" 31 30 #include "hw/sysbus.h" 32 31 #include "hw/i2c/i2c.h" 33 32
-1
include/hw/i386/apic.h
··· 1 1 #ifndef APIC_H 2 2 #define APIC_H 3 3 4 - #include "qemu-common.h" 5 4 6 5 /* apic.c */ 7 6 void apic_deliver_irq(uint8_t dest, uint8_t dest_mode, uint8_t delivery_mode,
-1
include/hw/ipmi/ipmi.h
··· 26 26 #define HW_IPMI_H 27 27 28 28 #include "exec/memory.h" 29 - #include "qemu-common.h" 30 29 #include "hw/qdev.h" 31 30 32 31 #define MAX_IPMI_MSG_SIZE 300
-1
include/hw/isa/apm.h
··· 1 1 #ifndef APM_H 2 2 #define APM_H 3 3 4 - #include "qemu-common.h" 5 4 #include "hw/hw.h" 6 5 #include "exec/memory.h" 7 6
-1
include/hw/isa/superio.h
··· 10 10 #ifndef HW_ISA_SUPERIO_H 11 11 #define HW_ISA_SUPERIO_H 12 12 13 - #include "qemu-common.h" 14 13 #include "sysemu/sysemu.h" 15 14 #include "hw/isa/isa.h" 16 15
-1
include/hw/lm32/lm32_pic.h
··· 1 1 #ifndef QEMU_HW_LM32_PIC_H 2 2 #define QEMU_HW_LM32_PIC_H 3 3 4 - #include "qemu-common.h" 5 4 6 5 uint32_t lm32_pic_get_ip(DeviceState *d); 7 6 uint32_t lm32_pic_get_im(DeviceState *d);
-1
include/hw/nmi.h
··· 22 22 #ifndef NMI_H 23 23 #define NMI_H 24 24 25 - #include "qemu-common.h" 26 25 #include "qom/object.h" 27 26 28 27 #define TYPE_NMI "nmi"
-1
include/hw/pci-host/pam.h
··· 50 50 * 0xf0000 - 0xfffff System BIOS Area Memory Segments 51 51 */ 52 52 53 - #include "qemu-common.h" 54 53 #include "exec/memory.h" 55 54 56 55 #define SMRAM_C_BASE 0xa0000
-1
include/hw/pci/msi.h
··· 21 21 #ifndef QEMU_MSI_H 22 22 #define QEMU_MSI_H 23 23 24 - #include "qemu-common.h" 25 24 #include "hw/pci/pci.h" 26 25 27 26 struct MSIMessage {
-1
include/hw/pci/msix.h
··· 1 1 #ifndef QEMU_MSIX_H 2 2 #define QEMU_MSIX_H 3 3 4 - #include "qemu-common.h" 5 4 #include "hw/pci/pci.h" 6 5 7 6 #define MSIX_CAP_LENGTH 12
-1
include/hw/pci/shpc.h
··· 1 1 #ifndef SHPC_H 2 2 #define SHPC_H 3 3 4 - #include "qemu-common.h" 5 4 #include "exec/memory.h" 6 5 #include "hw/hotplug.h" 7 6 #include "hw/pci/pci.h"
-1
include/hw/pci/slotid_cap.h
··· 1 1 #ifndef PCI_SLOTID_CAP_H 2 2 #define PCI_SLOTID_CAP_H 3 3 4 - #include "qemu-common.h" 5 4 6 5 int slotid_cap_init(PCIDevice *dev, int nslots, 7 6 uint8_t chassis,
-1
include/hw/ppc/openpic.h
··· 1 1 #ifndef OPENPIC_H 2 2 #define OPENPIC_H 3 3 4 - #include "qemu-common.h" 5 4 #include "hw/sysbus.h" 6 5 #include "hw/qdev-core.h" 7 6 #include "qom/cpu.h"
-1
include/hw/ptimer.h
··· 8 8 #ifndef PTIMER_H 9 9 #define PTIMER_H 10 10 11 - #include "qemu-common.h" 12 11 #include "qemu/timer.h" 13 12 #include "migration/vmstate.h" 14 13
-1
include/hw/sd/sdhci.h
··· 25 25 #ifndef SDHCI_H 26 26 #define SDHCI_H 27 27 28 - #include "qemu-common.h" 29 28 #include "hw/pci/pci.h" 30 29 #include "hw/sysbus.h" 31 30 #include "hw/sd/sd.h"
-1
include/hw/sh4/sh_intc.h
··· 1 1 #ifndef SH_INTC_H 2 2 #define SH_INTC_H 3 3 4 - #include "qemu-common.h" 5 4 #include "hw/irq.h" 6 5 7 6 typedef unsigned char intc_enum;
-1
include/hw/sparc/sun4m_iommu.h
··· 25 25 #ifndef SUN4M_IOMMU_H 26 26 #define SUN4M_IOMMU_H 27 27 28 - #include "qemu-common.h" 29 28 #include "hw/sysbus.h" 30 29 31 30 #define IOMMU_NREGS (4 * 4096 / 4)
-1
include/hw/sparc/sun4u_iommu.h
··· 27 27 #ifndef SUN4U_IOMMU_H 28 28 #define SUN4U_IOMMU_H 29 29 30 - #include "qemu-common.h" 31 30 #include "hw/sysbus.h" 32 31 33 32 #define IOMMU_NREGS 3
-1
include/hw/stream.h
··· 1 1 #ifndef STREAM_H 2 2 #define STREAM_H 3 3 4 - #include "qemu-common.h" 5 4 #include "qom/object.h" 6 5 7 6 /* stream slave. Used until qdev provides a generic way. */
-1
include/hw/timer/m48t59.h
··· 1 1 #ifndef HW_M48T59_H 2 2 #define HW_M48T59_H 3 3 4 - #include "qemu-common.h" 5 4 #include "qom/object.h" 6 5 7 6 #define TYPE_NVRAM "nvram"
-1
include/hw/vfio/vfio-common.h
··· 21 21 #ifndef HW_VFIO_VFIO_COMMON_H 22 22 #define HW_VFIO_VFIO_COMMON_H 23 23 24 - #include "qemu-common.h" 25 24 #include "exec/memory.h" 26 25 #include "qemu/queue.h" 27 26 #include "qemu/notify.h"
-1
include/hw/virtio/vhost-scsi-common.h
··· 14 14 #ifndef VHOST_SCSI_COMMON_H 15 15 #define VHOST_SCSI_COMMON_H 16 16 17 - #include "qemu-common.h" 18 17 #include "hw/qdev.h" 19 18 #include "hw/virtio/virtio-scsi.h" 20 19 #include "hw/virtio/vhost.h"
-1
include/hw/virtio/vhost-scsi.h
··· 14 14 #ifndef VHOST_SCSI_H 15 15 #define VHOST_SCSI_H 16 16 17 - #include "qemu-common.h" 18 17 #include "hw/qdev.h" 19 18 #include "hw/virtio/virtio-scsi.h" 20 19 #include "hw/virtio/vhost.h"
-1
include/hw/virtio/vhost-user-blk.h
··· 16 16 #define VHOST_USER_BLK_H 17 17 18 18 #include "standard-headers/linux/virtio_blk.h" 19 - #include "qemu-common.h" 20 19 #include "hw/qdev.h" 21 20 #include "hw/block/block.h" 22 21 #include "chardev/char-fe.h"
-1
include/hw/virtio/vhost-user-scsi.h
··· 17 17 #ifndef VHOST_USER_SCSI_H 18 18 #define VHOST_USER_SCSI_H 19 19 20 - #include "qemu-common.h" 21 20 #include "hw/qdev.h" 22 21 #include "hw/virtio/virtio-scsi.h" 23 22 #include "hw/virtio/vhost.h"
-1
include/hw/xen/xen.h
··· 8 8 * /usr/include/xen, so it can be included unconditionally. 9 9 */ 10 10 11 - #include "qemu-common.h" 12 11 #include "exec/cpu-common.h" 13 12 #include "hw/irq.h" 14 13
-1
include/io/channel.h
··· 21 21 #ifndef QIO_CHANNEL_H 22 22 #define QIO_CHANNEL_H 23 23 24 - #include "qemu-common.h" 25 24 #include "qom/object.h" 26 25 #include "qemu/coroutine.h" 27 26 #include "block/aio.h"
-1
include/io/dns-resolver.h
··· 21 21 #ifndef QIO_DNS_RESOLVER_H 22 22 #define QIO_DNS_RESOLVER_H 23 23 24 - #include "qemu-common.h" 25 24 #include "qapi/qapi-types-sockets.h" 26 25 #include "qom/object.h" 27 26 #include "io/task.h"
-1
include/io/task.h
··· 21 21 #ifndef QIO_TASK_H 22 22 #define QIO_TASK_H 23 23 24 - #include "qemu-common.h" 25 24 #include "qom/object.h" 26 25 27 26 typedef struct QIOTask QIOTask;
-1
include/migration/colo.h
··· 13 13 #ifndef QEMU_COLO_H 14 14 #define QEMU_COLO_H 15 15 16 - #include "qemu-common.h" 17 16 #include "qapi/qapi-types-migration.h" 18 17 19 18 enum colo_event {
-1
include/migration/failover.h
··· 13 13 #ifndef QEMU_FAILOVER_H 14 14 #define QEMU_FAILOVER_H 15 15 16 - #include "qemu-common.h" 17 16 #include "qapi/qapi-types-migration.h" 18 17 19 18 void failover_init_state(void);
-1
include/monitor/monitor.h
··· 1 1 #ifndef MONITOR_H 2 2 #define MONITOR_H 3 3 4 - #include "qemu-common.h" 5 4 #include "block/block.h" 6 5 #include "qapi/qapi-types-misc.h" 7 6 #include "qemu/readline.h"
-1
include/net/announce.h
··· 9 9 #ifndef QEMU_NET_ANNOUNCE_H 10 10 #define QEMU_NET_ANNOUNCE_H 11 11 12 - #include "qemu-common.h" 13 12 #include "qapi/qapi-types-net.h" 14 13 #include "qemu/timer.h" 15 14
-1
include/net/filter.h
··· 11 11 12 12 #include "qapi/qapi-types-net.h" 13 13 #include "qom/object.h" 14 - #include "qemu-common.h" 15 14 #include "net/queue.h" 16 15 17 16 #define TYPE_NETFILTER "netfilter"
-1
include/net/queue.h
··· 24 24 #ifndef QEMU_NET_QUEUE_H 25 25 #define QEMU_NET_QUEUE_H 26 26 27 - #include "qemu-common.h" 28 27 29 28 typedef struct NetPacket NetPacket; 30 29 typedef struct NetQueue NetQueue;
-1
include/net/tap.h
··· 26 26 #ifndef QEMU_NET_TAP_H 27 27 #define QEMU_NET_TAP_H 28 28 29 - #include "qemu-common.h" 30 29 #include "standard-headers/linux/virtio_net.h" 31 30 32 31 int tap_enable(NetClientState *nc);
+1 -3
include/qemu-common.h
··· 1 - 2 - /* Common header file that is included by all of QEMU. 3 - * 1 + /* 4 2 * This file is supposed to be included only by .c files. No header file should 5 3 * depend on qemu-common.h, as this would easily lead to circular header 6 4 * dependencies.
-1
include/qemu-io.h
··· 18 18 #ifndef QEMU_IO_H 19 19 #define QEMU_IO_H 20 20 21 - #include "qemu-common.h" 22 21 23 22 #define CMD_FLAG_GLOBAL ((int)0x80000000) /* don't iterate "args" */ 24 23
-1
include/qemu/base64.h
··· 21 21 #ifndef QEMU_BASE64_H 22 22 #define QEMU_BASE64_H 23 23 24 - #include "qemu-common.h" 25 24 26 25 27 26 /**
-1
include/qemu/buffer.h
··· 21 21 #ifndef QEMU_BUFFER_H 22 22 #define QEMU_BUFFER_H 23 23 24 - #include "qemu-common.h" 25 24 26 25 typedef struct Buffer Buffer; 27 26
-1
include/qemu/crc32c.h
··· 28 28 #ifndef QEMU_CRC32C_H 29 29 #define QEMU_CRC32C_H 30 30 31 - #include "qemu-common.h" 32 31 33 32 uint32_t crc32c(uint32_t crc, const uint8_t *data, unsigned int length); 34 33
-1
include/qemu/event_notifier.h
··· 13 13 #ifndef QEMU_EVENT_NOTIFIER_H 14 14 #define QEMU_EVENT_NOTIFIER_H 15 15 16 - #include "qemu-common.h" 17 16 18 17 #ifdef _WIN32 19 18 #include <windows.h>
-1
include/qemu/filemonitor.h
··· 21 21 #ifndef QEMU_FILEMONITOR_H 22 22 #define QEMU_FILEMONITOR_H 23 23 24 - #include "qemu-common.h" 25 24 26 25 27 26 typedef struct QFileMonitor QFileMonitor;
-1
include/qemu/mmap-alloc.h
··· 1 1 #ifndef QEMU_MMAP_ALLOC_H 2 2 #define QEMU_MMAP_ALLOC_H 3 3 4 - #include "qemu-common.h" 5 4 6 5 size_t qemu_fd_getpagesize(int fd); 7 6
-1
include/qemu/qdist.h
··· 7 7 #ifndef QEMU_QDIST_H 8 8 #define QEMU_QDIST_H 9 9 10 - #include "qemu-common.h" 11 10 #include "qemu/bitops.h" 12 11 13 12 /*
-1
include/qemu/throttle.h
··· 25 25 #ifndef THROTTLE_H 26 26 #define THROTTLE_H 27 27 28 - #include "qemu-common.h" 29 28 #include "qapi/qapi-types-block-core.h" 30 29 #include "qemu/timer.h" 31 30
-1
include/qemu/timer.h
··· 1 1 #ifndef QEMU_TIMER_H 2 2 #define QEMU_TIMER_H 3 3 4 - #include "qemu-common.h" 5 4 #include "qemu/bitops.h" 6 5 #include "qemu/notify.h" 7 6 #include "qemu/host-utils.h"
-1
include/qemu/uuid.h
··· 16 16 #ifndef QEMU_UUID_H 17 17 #define QEMU_UUID_H 18 18 19 - #include "qemu-common.h" 20 19 21 20 /* Version 4 UUID (pseudo random numbers), RFC4122 4.4. */ 22 21
-1
include/sysemu/cryptodev-vhost.h
··· 24 24 #ifndef CRYPTODEV_VHOST_H 25 25 #define CRYPTODEV_VHOST_H 26 26 27 - #include "qemu-common.h" 28 27 #include "hw/virtio/vhost.h" 29 28 #include "hw/virtio/vhost-backend.h" 30 29 #include "chardev/char.h"
-1
include/sysemu/cryptodev.h
··· 24 24 #define CRYPTODEV_H 25 25 26 26 #include "qom/object.h" 27 - #include "qemu-common.h" 28 27 29 28 /** 30 29 * CryptoDevBackend:
-1
include/sysemu/hax.h
··· 22 22 #ifndef QEMU_HAX_H 23 23 #define QEMU_HAX_H 24 24 25 - #include "qemu-common.h" 26 25 27 26 int hax_sync_vcpus(void); 28 27 int hax_init_vcpu(CPUState *cpu);
-1
include/sysemu/hvf.h
··· 13 13 #ifndef HVF_H 14 14 #define HVF_H 15 15 16 - #include "qemu-common.h" 17 16 #include "qemu/bitops.h" 18 17 #include "exec/memory.h" 19 18 #include "sysemu/accel.h"
-1
include/sysemu/qtest.h
··· 14 14 #ifndef QTEST_H 15 15 #define QTEST_H 16 16 17 - #include "qemu-common.h" 18 17 19 18 extern bool qtest_allowed; 20 19
-1
include/sysemu/rng.h
··· 14 14 #define QEMU_RNG_H 15 15 16 16 #include "qom/object.h" 17 - #include "qemu-common.h" 18 17 19 18 #define TYPE_RNG_BACKEND "rng-backend" 20 19 #define RNG_BACKEND(obj) \
-1
include/sysemu/tpm_backend.h
··· 14 14 #define TPM_BACKEND_H 15 15 16 16 #include "qom/object.h" 17 - #include "qemu-common.h" 18 17 #include "qemu/option.h" 19 18 #include "sysemu/tpm.h" 20 19 #include "qapi/error.h"
-1
include/sysemu/whpx.h
··· 13 13 #ifndef QEMU_WHPX_H 14 14 #define QEMU_WHPX_H 15 15 16 - #include "qemu-common.h" 17 16 18 17 int whpx_init_vcpu(CPUState *cpu); 19 18 int whpx_vcpu_exec(CPUState *cpu);
+1 -1
io/channel-socket.c
··· 15 15 * 16 16 * You should have received a copy of the GNU Lesser General Public 17 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 18 - * 19 18 */ 20 19 21 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 22 22 #include "qapi/error.h" 23 23 #include "qapi/qapi-visit-sockets.h" 24 24 #include "qemu/module.h"
-1
ioport.c
··· 26 26 */ 27 27 28 28 #include "qemu/osdep.h" 29 - #include "qemu-common.h" 30 29 #include "cpu.h" 31 30 #include "exec/ioport.h" 32 31 #include "trace-root.h"
-1
job-qmp.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 - #include "qemu-common.h" 28 27 #include "qemu/job.h" 29 28 #include "qapi/qapi-commands-job.h" 30 29 #include "qapi/error.h"
-1
job.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 - #include "qemu-common.h" 28 27 #include "qapi/error.h" 29 28 #include "qemu/job.h" 30 29 #include "qemu/id.h"
+1
linux-user/aarch64/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24 #include "qemu/guest-random.h"
+1
linux-user/alpha/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
+1
linux-user/arm/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "elf.h" 23 24 #include "cpu_loop-common.h"
+1
linux-user/cris/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
+1
linux-user/i386/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
+1
linux-user/m68k/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
+1
linux-user/main.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu/units.h" 22 23 #include "sysemu/tcg.h" 23 24 #include "qemu-version.h"
+1
linux-user/microblaze/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
+1
linux-user/mips/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24 #include "elf.h"
-1
linux-user/mmap.c
··· 19 19 #include "qemu/osdep.h" 20 20 21 21 #include "qemu.h" 22 - #include "qemu-common.h" 23 22 24 23 //#define DEBUG_MMAP 25 24
+1
linux-user/openrisc/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
+1
linux-user/ppc/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
+1
linux-user/riscv/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu/error-report.h" 22 23 #include "qemu.h" 23 24 #include "cpu_loop-common.h"
+1
linux-user/s390x/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
+1
linux-user/sh4/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
-1
linux-user/signal.c
··· 22 22 #include <sys/resource.h> 23 23 24 24 #include "qemu.h" 25 - #include "qemu-common.h" 26 25 #include "trace.h" 27 26 #include "signal-common.h" 28 27
+1
linux-user/sparc/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
-1
linux-user/syscall.c
··· 55 55 #include <linux/icmpv6.h> 56 56 #include <linux/errqueue.h> 57 57 #include <linux/random.h> 58 - #include "qemu-common.h" 59 58 #ifdef CONFIG_TIMERFD 60 59 #include <sys/timerfd.h> 61 60 #endif
+1
linux-user/tilegx/cpu_loop.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 + #include "qemu-common.h" 21 22 #include "qemu.h" 22 23 #include "cpu_loop-common.h" 23 24
-1
memory_mapping.c
··· 14 14 #include "qemu/osdep.h" 15 15 #include "qapi/error.h" 16 16 17 - #include "qemu-common.h" 18 17 #include "cpu.h" 19 18 #include "sysemu/memory_mapping.h" 20 19 #include "exec/memory.h"
-1
migration/migration.h
··· 14 14 #ifndef QEMU_MIGRATION_H 15 15 #define QEMU_MIGRATION_H 16 16 17 - #include "qemu-common.h" 18 17 #include "qapi/qapi-types-migration.h" 19 18 #include "qemu/thread.h" 20 19 #include "exec/cpu-common.h"
-1
migration/page_cache.c
··· 16 16 17 17 #include "qapi/qmp/qerror.h" 18 18 #include "qapi/error.h" 19 - #include "qemu-common.h" 20 19 #include "qemu/host-utils.h" 21 20 #include "page_cache.h" 22 21
-1
migration/qemu-file.c
··· 23 23 */ 24 24 #include "qemu/osdep.h" 25 25 #include <zlib.h> 26 - #include "qemu-common.h" 27 26 #include "qemu/error-report.h" 28 27 #include "qemu/iov.h" 29 28 #include "migration.h"
-1
migration/ram.h
··· 29 29 #ifndef QEMU_MIGRATION_RAM_H 30 30 #define QEMU_MIGRATION_RAM_H 31 31 32 - #include "qemu-common.h" 33 32 #include "qapi/qapi-types-migration.h" 34 33 #include "exec/cpu-common.h" 35 34 #include "io/channel.h"
-1
migration/socket.c
··· 17 17 #include "qemu/osdep.h" 18 18 #include "qemu/cutils.h" 19 19 20 - #include "qemu-common.h" 21 20 #include "qemu/error-report.h" 22 21 #include "qapi/error.h" 23 22 #include "channel.h"
-1
migration/vmstate-types.c
··· 11 11 */ 12 12 13 13 #include "qemu/osdep.h" 14 - #include "qemu-common.h" 15 14 #include "exec/cpu-common.h" 16 15 #include "qemu-file.h" 17 16 #include "migration.h"
-1
migration/vmstate.c
··· 11 11 */ 12 12 13 13 #include "qemu/osdep.h" 14 - #include "qemu-common.h" 15 14 #include "migration.h" 16 15 #include "migration/vmstate.h" 17 16 #include "savevm.h"
-1
net/checksum.c
··· 16 16 */ 17 17 18 18 #include "qemu/osdep.h" 19 - #include "qemu-common.h" 20 19 #include "net/checksum.h" 21 20 #include "net/eth.h" 22 21
+1 -1
net/colo-compare.c
··· 13 13 */ 14 14 15 15 #include "qemu/osdep.h" 16 + #include "qemu-common.h" 16 17 #include "qemu/error-report.h" 17 18 #include "trace.h" 18 - #include "qemu-common.h" 19 19 #include "qapi/error.h" 20 20 #include "net/net.h" 21 21 #include "net/eth.h"
+1
net/dump.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "clients.h" 27 28 #include "qapi/error.h" 28 29 #include "qemu/error-report.h"
-1
net/eth.c
··· 18 18 #include "qemu/osdep.h" 19 19 #include "net/eth.h" 20 20 #include "net/checksum.h" 21 - #include "qemu-common.h" 22 21 #include "net/tap.h" 23 22 24 23 void eth_setup_vlan_headers_ex(struct eth_header *ehdr, uint16_t vlan_tag,
-1
net/filter-buffer.c
··· 10 10 #include "net/filter.h" 11 11 #include "net/queue.h" 12 12 #include "qapi/error.h" 13 - #include "qemu-common.h" 14 13 #include "qemu/timer.h" 15 14 #include "qemu/iov.h" 16 15 #include "qapi/qapi-builtin-visit.h"
-1
net/filter-mirror.c
··· 12 12 #include "qemu/osdep.h" 13 13 #include "net/filter.h" 14 14 #include "net/net.h" 15 - #include "qemu-common.h" 16 15 #include "qapi/error.h" 17 16 #include "qom/object.h" 18 17 #include "qemu/main-loop.h"
-1
net/filter-rewriter.c
··· 14 14 #include "colo.h" 15 15 #include "net/filter.h" 16 16 #include "net/net.h" 17 - #include "qemu-common.h" 18 17 #include "qemu/error-report.h" 19 18 #include "qom/object.h" 20 19 #include "qemu/main-loop.h"
-1
net/hub.h
··· 15 15 #ifndef NET_HUB_H 16 16 #define NET_HUB_H 17 17 18 - #include "qemu-common.h" 19 18 20 19 NetClientState *net_hub_add_port(int hub_id, const char *name, 21 20 NetClientState *hubpeer);
-1
net/l2tpv3.c
··· 29 29 #include "net/net.h" 30 30 #include "clients.h" 31 31 #include "qapi/error.h" 32 - #include "qemu-common.h" 33 32 #include "qemu/error-report.h" 34 33 #include "qemu/option.h" 35 34 #include "qemu/sockets.h"
+1
net/tap-bsd.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qapi/error.h" 27 28 #include "tap_int.h" 28 29 #include "qemu/cutils.h"
+1
net/tap-linux.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 + #include "qemu-common.h" 27 28 #include "tap_int.h" 28 29 #include "tap-linux.h" 29 30 #include "net/tap.h"
-1
net/tap_int.h
··· 26 26 #ifndef NET_TAP_INT_H 27 27 #define NET_TAP_INT_H 28 28 29 - #include "qemu-common.h" 30 29 #include "qapi/qapi-types-net.h" 31 30 32 31 int tap_open(char *ifname, int ifname_size, int *vnet_hdr,
+1
os-posix.c
··· 29 29 #include <grp.h> 30 30 #include <libgen.h> 31 31 32 + #include "qemu-common.h" 32 33 /* Needed early for CONFIG_BSD etc. */ 33 34 #include "sysemu/sysemu.h" 34 35 #include "net/slirp.h"
+2
os-win32.c
··· 22 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 23 * THE SOFTWARE. 24 24 */ 25 + 25 26 #include "qemu/osdep.h" 26 27 #include <windows.h> 27 28 #include <mmsystem.h> 29 + #include "qemu-common.h" 28 30 #include "sysemu/sysemu.h" 29 31 #include "qemu-options.h" 30 32
-1
qapi/qapi-dealloc-visitor.c
··· 16 16 #include "qapi/dealloc-visitor.h" 17 17 #include "qapi/qmp/qnull.h" 18 18 #include "qemu/queue.h" 19 - #include "qemu-common.h" 20 19 #include "qapi/visitor-impl.h" 21 20 22 21 struct QapiDeallocVisitor
-1
qapi/qapi-visit-core.c
··· 14 14 15 15 #include "qemu/osdep.h" 16 16 #include "qapi/error.h" 17 - #include "qemu-common.h" 18 17 #include "qapi/qmp/qerror.h" 19 18 #include "qapi/visitor.h" 20 19 #include "qapi/visitor-impl.h"
-1
qapi/qmp-event.c
··· 13 13 14 14 #include "qemu/osdep.h" 15 15 16 - #include "qemu-common.h" 17 16 #include "qapi/qmp-event.h" 18 17 #include "qapi/qmp/qstring.h" 19 18 #include "qapi/qmp/qdict.h"
-1
qapi/qobject-input-visitor.c
··· 18 18 #include "qapi/qobject-input-visitor.h" 19 19 #include "qapi/visitor-impl.h" 20 20 #include "qemu/queue.h" 21 - #include "qemu-common.h" 22 21 #include "qapi/qmp/qjson.h" 23 22 #include "qapi/qmp/qbool.h" 24 23 #include "qapi/qmp/qdict.h"
-1
qapi/qobject-output-visitor.c
··· 16 16 #include "qapi/qobject-output-visitor.h" 17 17 #include "qapi/visitor-impl.h" 18 18 #include "qemu/queue.h" 19 - #include "qemu-common.h" 20 19 #include "qapi/qmp/qbool.h" 21 20 #include "qapi/qmp/qdict.h" 22 21 #include "qapi/qmp/qlist.h"
-1
qapi/string-input-visitor.c
··· 12 12 13 13 #include "qemu/osdep.h" 14 14 #include "qapi/error.h" 15 - #include "qemu-common.h" 16 15 #include "qapi/string-input-visitor.h" 17 16 #include "qapi/visitor-impl.h" 18 17 #include "qapi/qmp/qerror.h"
-1
qemu-edid.c
··· 5 5 * See the COPYING file in the top-level directory. 6 6 */ 7 7 #include "qemu/osdep.h" 8 - #include "qemu-common.h" 9 8 #include "qemu/bswap.h" 10 9 #include "qemu/cutils.h" 11 10 #include "hw/display/edid.h"
+1
qemu-img.c
··· 25 25 #include "qemu/osdep.h" 26 26 #include <getopt.h> 27 27 28 + #include "qemu-common.h" 28 29 #include "qemu-version.h" 29 30 #include "qapi/error.h" 30 31 #include "qapi/qapi-visit-block-core.h"
+1
qemu-io.c
··· 15 15 #include <termios.h> 16 16 #endif 17 17 18 + #include "qemu-common.h" 18 19 #include "qapi/error.h" 19 20 #include "qemu-io.h" 20 21 #include "qemu/error-report.h"
-1
qemu-keymap.c
··· 10 10 * See the COPYING file in the top-level directory. 11 11 */ 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "qemu/notify.h" 15 14 #include "ui/input.h" 16 15
+1
qemu-nbd.c
··· 21 21 #include <libgen.h> 22 22 #include <pthread.h> 23 23 24 + #include "qemu-common.h" 24 25 #include "qapi/error.h" 25 26 #include "qemu/cutils.h" 26 27 #include "sysemu/block-backend.h"
+1
qga/commands-posix.c
··· 16 16 #include <sys/utsname.h> 17 17 #include <sys/wait.h> 18 18 #include <dirent.h> 19 + #include "qemu-common.h" 19 20 #include "guest-agent-core.h" 20 21 #include "qga-qapi-commands.h" 21 22 #include "qapi/error.h"
-1
qga/guest-agent-core.h
··· 14 14 #define GUEST_AGENT_CORE_H 15 15 16 16 #include "qapi/qmp/dispatch.h" 17 - #include "qemu-common.h" 18 17 #include "qga-qapi-types.h" 19 18 20 19 #define QGA_READ_COUNT_DEFAULT 4096
+1
qga/main.c
··· 18 18 #include <syslog.h> 19 19 #include <sys/wait.h> 20 20 #endif 21 + #include "qemu-common.h" 21 22 #include "qapi/qmp/json-parser.h" 22 23 #include "qapi/qmp/qdict.h" 23 24 #include "qapi/qmp/qjson.h"
+1
qmp.c
··· 14 14 */ 15 15 16 16 #include "qemu/osdep.h" 17 + #include "qemu-common.h" 17 18 #include "qemu-version.h" 18 19 #include "qemu/cutils.h" 19 20 #include "qemu/option.h"
-1
qom/qom-qobject.c
··· 11 11 12 12 #include "qemu/osdep.h" 13 13 #include "qapi/error.h" 14 - #include "qemu-common.h" 15 14 #include "qom/object.h" 16 15 #include "qom/qom-qobject.h" 17 16 #include "qapi/visitor.h"
-1
replay/replay-events.c
··· 10 10 */ 11 11 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "qemu/error-report.h" 15 14 #include "sysemu/replay.h" 16 15 #include "replay-internal.h"
-1
replay/replay-input.c
··· 10 10 */ 11 11 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "sysemu/replay.h" 15 14 #include "replay-internal.h" 16 15 #include "qemu/notify.h"
-1
replay/replay-internal.c
··· 10 10 */ 11 11 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "sysemu/replay.h" 15 14 #include "replay-internal.h" 16 15 #include "qemu/error-report.h"
-1
replay/replay-snapshot.c
··· 11 11 12 12 #include "qemu/osdep.h" 13 13 #include "qapi/error.h" 14 - #include "qemu-common.h" 15 14 #include "sysemu/replay.h" 16 15 #include "replay-internal.h" 17 16 #include "sysemu/sysemu.h"
-1
replay/replay-time.c
··· 10 10 */ 11 11 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "sysemu/replay.h" 15 14 #include "replay-internal.h" 16 15 #include "qemu/error-report.h"
-2
scripts/modules/module_block.py
··· 68 68 fheader.write('''#ifndef QEMU_MODULE_BLOCK_H 69 69 #define QEMU_MODULE_BLOCK_H 70 70 71 - #include "qemu-common.h" 72 - 73 71 static const struct { 74 72 const char *format_name; 75 73 const char *protocol_name;
-1
scripts/qapi/events.py
··· 148 148 visit = self._module_basename('qapi-visit', name) 149 149 self._genc.add(mcgen(''' 150 150 #include "qemu/osdep.h" 151 - #include "qemu-common.h" 152 151 #include "%(prefix)sqapi-emit-events.h" 153 152 #include "%(events)s.h" 154 153 #include "%(visit)s.h"
-2
scripts/qapi/visit.py
··· 287 287 self._add_system_module(None, ' * Built-in QAPI visitors') 288 288 self._genc.preamble_add(mcgen(''' 289 289 #include "qemu/osdep.h" 290 - #include "qemu-common.h" 291 290 #include "qapi/error.h" 292 291 #include "qapi/qapi-builtin-visit.h" 293 292 ''')) ··· 303 302 visit = self._module_basename('qapi-visit', name) 304 303 self._genc.preamble_add(mcgen(''' 305 304 #include "qemu/osdep.h" 306 - #include "qemu-common.h" 307 305 #include "qapi/error.h" 308 306 #include "qapi/qmp/qerror.h" 309 307 #include "%(visit)s.h"
-1
scripts/tracetool/format/h.py
··· 22 22 '#ifndef TRACE_%s_GENERATED_TRACERS_H' % group.upper(), 23 23 '#define TRACE_%s_GENERATED_TRACERS_H' % group.upper(), 24 24 '', 25 - '#include "qemu-common.h"', 26 25 '#include "trace/control.h"', 27 26 '') 28 27
-1
scripts/tracetool/format/tcg_helper_c.py
··· 52 52 out('/* This file is autogenerated by tracetool, do not edit. */', 53 53 '', 54 54 '#include "qemu/osdep.h"', 55 - '#include "qemu-common.h"', 56 55 '#include "cpu.h"', 57 56 '#include "exec/helper-proto.h"', 58 57 '#include "%s"' % header,
-1
scripts/tracetool/format/ust_events_h.py
··· 37 37 ' defined(TRACEPOINT_HEADER_MULTI_READ)', 38 38 '#define TRACE_%s_GENERATED_UST_H' % group.upper(), 39 39 '', 40 - '#include "qemu-common.h"', 41 40 '#include <lttng/tracepoint.h>', 42 41 '', 43 42 '/*',
+1
scsi/qemu-pr-helper.c
··· 36 36 #include <mpath_persist.h> 37 37 #endif 38 38 39 + #include "qemu-common.h" 39 40 #include "qapi/error.h" 40 41 #include "qemu/cutils.h" 41 42 #include "qemu/main-loop.h"
-1
stubs/bdrv-next-monitor-owned.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "block/block.h" 4 3 5 4 BlockDriverState *bdrv_next_monitor_owned(BlockDriverState *bs)
-1
stubs/blk-commit-all.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "sysemu/block-backend.h" 4 3 5 4 int blk_commit_all(void)
-1
stubs/change-state-handler.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "sysemu/sysemu.h" 4 3 5 4 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
-1
stubs/clock-warp.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/timer.h" 4 3 5 4 void qemu_start_warp_timer(void)
-1
stubs/cpu-get-clock.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/timer.h" 4 3 5 4 int64_t cpu_get_clock(void)
-1
stubs/cpu-get-icount.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/timer.h" 4 3 #include "sysemu/cpus.h" 5 4 #include "qemu/main-loop.h"
-1
stubs/dump.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 - #include "qemu-common.h" 16 15 #include "sysemu/dump-arch.h" 17 16 18 17 int cpu_get_dump_info(ArchDumpInfo *info,
-1
stubs/error-printf.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/error-report.h" 4 3 5 4 int error_vprintf(const char *fmt, va_list ap)
-1
stubs/fd-register.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/main-loop.h" 4 3 5 4 void qemu_fd_register(int fd)
-1
stubs/fdset.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "monitor/monitor.h" 4 3 5 4 int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
-1
stubs/iothread-lock.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/main-loop.h" 4 3 5 4 bool qemu_mutex_iothread_locked(void)
-1
stubs/is-daemonized.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 4 3 /* Win32 has its own inline stub */ 5 4 #ifndef _WIN32
-1
stubs/machine-init-done.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "sysemu/sysemu.h" 4 3 5 4 bool machine_init_done = true;
-1
stubs/migr-blocker.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "migration/blocker.h" 4 3 5 4 int migrate_add_blocker(Error *reason, Error **errp)
-1
stubs/monitor.c
··· 1 1 #include "qemu/osdep.h" 2 2 #include "qapi/error.h" 3 3 #include "qapi/qapi-emit-events.h" 4 - #include "qemu-common.h" 5 4 #include "monitor/monitor.h" 6 5 7 6 __thread Monitor *cur_mon;
-1
stubs/notify-event.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/main-loop.h" 4 3 5 4 void qemu_notify_event(void)
-1
stubs/set-fd-handler.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/main-loop.h" 4 3 5 4 void qemu_set_fd_handler(int fd,
-1
stubs/uuid.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qapi/qapi-commands-misc.h" 4 3 #include "qemu/uuid.h" 5 4
-1
stubs/vm-stop.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "sysemu/sysemu.h" 4 3 5 4 void qemu_system_vmstop_request_prepare(void)
-1
stubs/vmstate.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "migration/vmstate.h" 4 3 5 4 const VMStateDescription vmstate_dummy = {};
-1
stubs/xen-common.c
··· 6 6 */ 7 7 8 8 #include "qemu/osdep.h" 9 - #include "qemu-common.h" 10 9 #include "hw/xen/xen.h" 11 10 12 11 void xenstore_store_pv_console_info(int i, Chardev *chr)
-1
stubs/xen-hvm.c
··· 9 9 */ 10 10 11 11 #include "qemu/osdep.h" 12 - #include "qemu-common.h" 13 12 #include "hw/xen/xen.h" 14 13 #include "exec/memory.h" 15 14 #include "qapi/qapi-commands-misc.h"
-1
target/alpha/cpu.c
··· 23 23 #include "qapi/error.h" 24 24 #include "qemu/qemu-print.h" 25 25 #include "cpu.h" 26 - #include "qemu-common.h" 27 26 #include "exec/exec-all.h" 28 27 29 28
-1
target/alpha/cpu.h
··· 20 20 #ifndef ALPHA_CPU_H 21 21 #define ALPHA_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "cpu-qom.h" 25 24 #include "exec/cpu-defs.h" 26 25
-1
target/alpha/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/alpha/machine.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "cpu.h" 4 3 #include "hw/hw.h" 5 4 #include "hw/boards.h"
-1
target/arm/arm-semi.c
··· 34 34 35 35 #define ARM_ANGEL_HEAP_SIZE (128 * 1024 * 1024) 36 36 #else 37 - #include "qemu-common.h" 38 37 #include "exec/gdbstub.h" 39 38 #include "qemu/cutils.h" 40 39 #endif
+1
target/arm/cpu.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 + #include "qemu-common.h" 22 23 #include "target/arm/idau.h" 23 24 #include "qemu/module.h" 24 25 #include "qapi/error.h"
-1
target/arm/cpu.h
··· 22 22 23 23 #include "kvm-consts.h" 24 24 #include "hw/registerfields.h" 25 - #include "qemu-common.h" 26 25 #include "cpu-qom.h" 27 26 #include "exec/cpu-defs.h" 28 27
-1
target/arm/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/arm/gdbstub64.c
··· 17 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 18 18 */ 19 19 #include "qemu/osdep.h" 20 - #include "qemu-common.h" 21 20 #include "cpu.h" 22 21 #include "exec/gdbstub.h" 23 22
-1
target/arm/kvm-stub.c
··· 10 10 * 11 11 */ 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "cpu.h" 15 14 #include "kvm_arm.h" 16 15
-1
target/arm/machine.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "cpu.h" 4 3 #include "hw/hw.h" 5 4 #include "hw/boards.h"
-1
target/cris/cpu.c
··· 25 25 #include "qapi/error.h" 26 26 #include "qemu/qemu-print.h" 27 27 #include "cpu.h" 28 - #include "qemu-common.h" 29 28 #include "mmu.h" 30 29 31 30
-1
target/cris/cpu.h
··· 21 21 #ifndef CRIS_CPU_H 22 22 #define CRIS_CPU_H 23 23 24 - #include "qemu-common.h" 25 24 #include "cpu-qom.h" 26 25 #include "exec/cpu-defs.h" 27 26
-1
target/cris/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/cris/machine.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 - #include "qemu-common.h" 23 22 #include "cpu.h" 24 23 #include "hw/hw.h" 25 24 #include "migration/cpu.h"
-1
target/hppa/cpu.h
··· 20 20 #ifndef HPPA_CPU_H 21 21 #define HPPA_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "cpu-qom.h" 25 24 #include "exec/cpu-defs.h" 26 25
-1
target/hppa/gdbstub.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/hppa/machine.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "hw/hw.h" 24 23 #include "hw/boards.h"
-1
target/i386/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/i386/kvm-stub.c
··· 10 10 * 11 11 */ 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "cpu.h" 15 14 #include "kvm_i386.h" 16 15
-1
target/i386/kvm.c
··· 20 20 #include <linux/kvm.h> 21 21 #include "standard-headers/asm-x86/kvm_para.h" 22 22 23 - #include "qemu-common.h" 24 23 #include "cpu.h" 25 24 #include "sysemu/sysemu.h" 26 25 #include "sysemu/hw_accel.h"
-1
target/i386/sev-stub.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 - #include "qemu-common.h" 16 15 #include "sev_i386.h" 17 16 18 17 SevInfo *sev_get_info(void)
-1
target/i386/xsave_helper.c
··· 4 4 */ 5 5 #include "qemu/osdep.h" 6 6 7 - #include "qemu-common.h" 8 7 #include "cpu.h" 9 8 10 9 void x86_cpu_xsave_all_areas(X86CPU *cpu, X86XSaveArea *buf)
-1
target/lm32/cpu.c
··· 22 22 #include "qapi/error.h" 23 23 #include "qemu/qemu-print.h" 24 24 #include "cpu.h" 25 - #include "qemu-common.h" 26 25 27 26 28 27 static void lm32_cpu_set_pc(CPUState *cs, vaddr value)
-1
target/lm32/cpu.h
··· 20 20 #ifndef LM32_CPU_H 21 21 #define LM32_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "cpu-qom.h" 25 24 #include "exec/cpu-defs.h" 26 25
-1
target/lm32/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23 #include "hw/lm32/lm32_pic.h"
-1
target/lm32/machine.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "cpu.h" 4 3 #include "hw/hw.h" 5 4 #include "hw/boards.h"
-1
target/m68k/cpu.c
··· 21 21 #include "qemu/osdep.h" 22 22 #include "qapi/error.h" 23 23 #include "cpu.h" 24 - #include "qemu-common.h" 25 24 #include "migration/vmstate.h" 26 25 #include "fpu/softfloat.h" 27 26
-1
target/m68k/cpu.h
··· 21 21 #ifndef M68K_CPU_H 22 22 #define M68K_CPU_H 23 23 24 - #include "qemu-common.h" 25 24 #include "exec/cpu-defs.h" 26 25 #include "cpu-qom.h" 27 26
-1
target/m68k/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/m68k/m68k-semi.c
··· 24 24 #include "qemu.h" 25 25 #define SEMIHOSTING_HEAP_SIZE (128 * 1024 * 1024) 26 26 #else 27 - #include "qemu-common.h" 28 27 #include "exec/gdbstub.h" 29 28 #include "exec/softmmu-semi.h" 30 29 #endif
-1
target/microblaze/cpu.h
··· 20 20 #ifndef MICROBLAZE_CPU_H 21 21 #define MICROBLAZE_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "cpu-qom.h" 25 24 #include "exec/cpu-defs.h" 26 25 #include "fpu/softfloat-types.h"
-1
target/microblaze/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/mips/cpu.h
··· 3 3 4 4 #define ALIGNED_ONLY 5 5 6 - #include "qemu-common.h" 7 6 #include "cpu-qom.h" 8 7 #include "exec/cpu-defs.h" 9 8 #include "fpu/softfloat.h"
-1
target/mips/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "internal.h" 24 23 #include "exec/gdbstub.h"
-1
target/mips/machine.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "cpu.h" 4 3 #include "internal.h" 5 4 #include "hw/hw.h"
-1
target/moxie/cpu.c
··· 20 20 #include "qemu/osdep.h" 21 21 #include "qapi/error.h" 22 22 #include "cpu.h" 23 - #include "qemu-common.h" 24 23 #include "migration/vmstate.h" 25 24 #include "machine.h" 26 25
-1
target/moxie/cpu.h
··· 20 20 #ifndef MOXIE_CPU_H 21 21 #define MOXIE_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "exec/cpu-defs.h" 25 24 26 25 #define MOXIE_EX_DIV0 0
-1
target/moxie/machine.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "cpu.h" 4 3 #include "hw/hw.h" 5 4 #include "hw/boards.h"
-1
target/nios2/cpu.h
··· 21 21 #ifndef NIOS2_CPU_H 22 22 #define NIOS2_CPU_H 23 23 24 - #include "qemu-common.h" 25 24 #include "exec/cpu-defs.h" 26 25 #include "qom/cpu.h" 27 26
-1
target/nios2/mmu.c
··· 19 19 */ 20 20 21 21 #include "qemu/osdep.h" 22 - #include "qemu-common.h" 23 22 #include "qemu/qemu-print.h" 24 23 #include "cpu.h" 25 24 #include "exec/exec-all.h"
-1
target/openrisc/cpu.c
··· 21 21 #include "qapi/error.h" 22 22 #include "qemu/qemu-print.h" 23 23 #include "cpu.h" 24 - #include "qemu-common.h" 25 24 26 25 static void openrisc_cpu_set_pc(CPUState *cs, vaddr value) 27 26 {
-1
target/openrisc/cpu.h
··· 20 20 #ifndef OPENRISC_CPU_H 21 21 #define OPENRISC_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "exec/cpu-defs.h" 25 24 #include "qom/cpu.h" 26 25
-1
target/openrisc/disas.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "disas/dis-asm.h" 23 22 #include "qemu/bitops.h" 24 23 #include "cpu.h"
-1
target/openrisc/exception.h
··· 21 21 #define TARGET_OPENRISC_EXCEPTION_H 22 22 23 23 #include "cpu.h" 24 - #include "qemu-common.h" 25 24 26 25 void QEMU_NORETURN raise_exception(OpenRISCCPU *cpu, uint32_t excp); 27 26
-1
target/openrisc/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/openrisc/interrupt.c
··· 20 20 #include "qemu/osdep.h" 21 21 #include "cpu.h" 22 22 #include "exec/exec-all.h" 23 - #include "qemu-common.h" 24 23 #include "exec/gdbstub.h" 25 24 #include "qemu/host-utils.h" 26 25 #ifndef CONFIG_USER_ONLY
-1
target/openrisc/machine.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "hw/hw.h" 24 23 #include "hw/boards.h"
-1
target/openrisc/mmu.c
··· 21 21 #include "qemu/osdep.h" 22 22 #include "cpu.h" 23 23 #include "exec/exec-all.h" 24 - #include "qemu-common.h" 25 24 #include "exec/gdbstub.h" 26 25 #include "qemu/host-utils.h" 27 26 #ifndef CONFIG_USER_ONLY
-1
target/openrisc/translate.c
··· 23 23 #include "exec/exec-all.h" 24 24 #include "disas/disas.h" 25 25 #include "tcg-op.h" 26 - #include "qemu-common.h" 27 26 #include "qemu/log.h" 28 27 #include "qemu/bitops.h" 29 28 #include "qemu/qemu-print.h"
-1
target/ppc/cpu.h
··· 20 20 #ifndef PPC_CPU_H 21 21 #define PPC_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "qemu/int128.h" 25 24 #include "exec/cpu-defs.h" 26 25 #include "cpu-qom.h"
-1
target/ppc/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/ppc/kvm-stub.c
··· 10 10 * 11 11 */ 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "cpu.h" 15 14 #include "hw/ppc/openpic_kvm.h" 16 15
-1
target/ppc/machine.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "cpu.h" 4 3 #include "exec/exec-all.h" 5 4 #include "hw/hw.h"
-1
target/riscv/cpu.h
··· 20 20 #ifndef RISCV_CPU_H 21 21 #define RISCV_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "qom/cpu.h" 25 24 #include "exec/cpu-defs.h" 26 25 #include "fpu/softfloat.h"
-1
target/riscv/gdbstub.c
··· 17 17 */ 18 18 19 19 #include "qemu/osdep.h" 20 - #include "qemu-common.h" 21 20 #include "exec/gdbstub.h" 22 21 #include "cpu.h" 23 22
-1
target/riscv/pmp.c
··· 27 27 #include "qemu/log.h" 28 28 #include "qapi/error.h" 29 29 #include "cpu.h" 30 - #include "qemu-common.h" 31 30 32 31 #ifndef CONFIG_USER_ONLY 33 32
-1
target/s390x/cpu.h
··· 21 21 #ifndef S390X_CPU_H 22 22 #define S390X_CPU_H 23 23 24 - #include "qemu-common.h" 25 24 #include "cpu-qom.h" 26 25 #include "cpu_models.h" 27 26 #include "exec/cpu-defs.h"
-1
target/s390x/kvm-stub.c
··· 8 8 */ 9 9 10 10 #include "qemu/osdep.h" 11 - #include "qemu-common.h" 12 11 #include "cpu.h" 13 12 #include "kvm_s390x.h" 14 13
-1
target/s390x/vec_helper.c
··· 10 10 * See the COPYING file in the top-level directory. 11 11 */ 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "cpu.h" 15 14 #include "internal.h" 16 15 #include "vec.h"
-1
target/sh4/cpu.c
··· 23 23 #include "qapi/error.h" 24 24 #include "qemu/qemu-print.h" 25 25 #include "cpu.h" 26 - #include "qemu-common.h" 27 26 #include "migration/vmstate.h" 28 27 #include "exec/exec-all.h" 29 28 #include "fpu/softfloat.h"
-1
target/sh4/cpu.h
··· 20 20 #ifndef SH4_CPU_H 21 21 #define SH4_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "cpu-qom.h" 25 24 #include "exec/cpu-defs.h" 26 25
-1
target/sh4/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/sparc/cpu.h
··· 1 1 #ifndef SPARC_CPU_H 2 2 #define SPARC_CPU_H 3 3 4 - #include "qemu-common.h" 5 4 #include "qemu/bswap.h" 6 5 #include "cpu-qom.h" 7 6 #include "exec/cpu-defs.h"
-1
target/sparc/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23
-1
target/sparc/machine.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "cpu.h" 4 3 #include "exec/exec-all.h" 5 4 #include "hw/hw.h"
-1
target/tilegx/cpu.h
··· 20 20 #ifndef TILEGX_CPU_H 21 21 #define TILEGX_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "exec/cpu-defs.h" 25 24 26 25 /* TILE-Gx common register alias */
-1
target/tilegx/helper.c
··· 21 21 #include "qemu/osdep.h" 22 22 #include "cpu.h" 23 23 #include "exec/exec-all.h" 24 - #include "qemu-common.h" 25 24 #include "exec/helper-proto.h" 26 25 #include <zlib.h> /* For crc32 */ 27 26 #include "syscall_defs.h"
-1
target/tilegx/simd_helper.c
··· 20 20 21 21 #include "qemu/osdep.h" 22 22 #include "cpu.h" 23 - #include "qemu-common.h" 24 23 #include "exec/helper-proto.h" 25 24 26 25
-1
target/tricore/cpu.c
··· 20 20 #include "qemu/osdep.h" 21 21 #include "qapi/error.h" 22 22 #include "cpu.h" 23 - #include "qemu-common.h" 24 23 #include "exec/exec-all.h" 25 24 #include "qemu/error-report.h" 26 25
-1
target/tricore/cpu.h
··· 20 20 #ifndef TRICORE_CPU_H 21 21 #define TRICORE_CPU_H 22 22 23 - #include "qemu-common.h" 24 23 #include "cpu-qom.h" 25 24 #include "exec/cpu-defs.h" 26 25 #include "tricore-defs.h"
-1
target/unicore32/cpu.c
··· 15 15 #include "qemu/osdep.h" 16 16 #include "qapi/error.h" 17 17 #include "cpu.h" 18 - #include "qemu-common.h" 19 18 #include "migration/vmstate.h" 20 19 #include "exec/exec-all.h" 21 20 #include "fpu/softfloat.h"
-1
target/unicore32/cpu.h
··· 12 12 #ifndef UNICORE32_CPU_H 13 13 #define UNICORE32_CPU_H 14 14 15 - #include "qemu-common.h" 16 15 #include "cpu-qom.h" 17 16 #include "exec/cpu-defs.h" 18 17
-1
target/xtensa/core-dc233c.c
··· 28 28 #include "qemu/osdep.h" 29 29 #include "cpu.h" 30 30 #include "exec/gdbstub.h" 31 - #include "qemu-common.h" 32 31 #include "qemu/host-utils.h" 33 32 34 33 #include "core-dc233c/core-isa.h"
-1
target/xtensa/core-de212.c
··· 28 28 #include "qemu/osdep.h" 29 29 #include "cpu.h" 30 30 #include "exec/gdbstub.h" 31 - #include "qemu-common.h" 32 31 #include "qemu/host-utils.h" 33 32 34 33 #include "core-de212/core-isa.h"
-1
target/xtensa/core-fsf.c
··· 28 28 #include "qemu/osdep.h" 29 29 #include "cpu.h" 30 30 #include "exec/gdbstub.h" 31 - #include "qemu-common.h" 32 31 #include "qemu/host-utils.h" 33 32 34 33 #include "core-fsf/core-isa.h"
-1
target/xtensa/core-sample_controller.c
··· 28 28 #include "qemu/osdep.h" 29 29 #include "cpu.h" 30 30 #include "exec/gdbstub.h" 31 - #include "qemu-common.h" 32 31 #include "qemu/host-utils.h" 33 32 34 33 #include "core-sample_controller/core-isa.h"
-1
target/xtensa/core-test_kc705_be.c
··· 28 28 #include "qemu/osdep.h" 29 29 #include "cpu.h" 30 30 #include "exec/gdbstub.h" 31 - #include "qemu-common.h" 32 31 #include "qemu/host-utils.h" 33 32 34 33 #include "core-test_kc705_be/core-isa.h"
-1
target/xtensa/cpu.h
··· 28 28 #ifndef XTENSA_CPU_H 29 29 #define XTENSA_CPU_H 30 30 31 - #include "qemu-common.h" 32 31 #include "cpu-qom.h" 33 32 #include "exec/cpu-defs.h" 34 33 #include "xtensa-isa.h"
-1
target/xtensa/gdbstub.c
··· 18 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 19 */ 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "exec/gdbstub.h" 24 23 #include "qemu/log.h"
-1
tcg/optimize.c
··· 24 24 */ 25 25 26 26 #include "qemu/osdep.h" 27 - #include "qemu-common.h" 28 27 #include "exec/cpu-common.h" 29 28 #include "tcg-op.h" 30 29
-1
tcg/tcg-common.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 - #include "qemu-common.h" 27 26 #include "exec/cpu-common.h" 28 27 #include "tcg/tcg.h" 29 28
-1
tcg/tcg-op-gvec.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "tcg.h" 23 22 #include "tcg-op.h" 24 23 #include "tcg-op-gvec.h"
-1
tcg/tcg-op-vec.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "cpu.h" 23 22 #include "tcg.h" 24 23 #include "tcg-op.h"
-1
tcg/tcg-op.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 - #include "qemu-common.h" 27 26 #include "cpu.h" 28 27 #include "exec/exec-all.h" 29 28 #include "tcg.h"
-1
tcg/tcg.h
··· 25 25 #ifndef TCG_H 26 26 #define TCG_H 27 27 28 - #include "qemu-common.h" 29 28 #include "cpu.h" 30 29 #include "exec/tb-context.h" 31 30 #include "qemu/bitops.h"
-1
tests/crypto-tls-psk-helpers.h
··· 21 21 #include <gnutls/gnutls.h> 22 22 23 23 #ifdef QCRYPTO_HAVE_TLS_TEST_SUPPORT 24 - # include "qemu-common.h" 25 24 26 25 void test_tls_psk_init(const char *keyfile); 27 26 void test_tls_psk_cleanup(const char *keyfile);
-1
tests/crypto-tls-x509-helpers.h
··· 29 29 #ifdef QCRYPTO_HAVE_TLS_TEST_SUPPORT 30 30 # include <libtasn1.h> 31 31 32 - # include "qemu-common.h" 33 32 34 33 /* 35 34 * This contains parameter about how to generate
+1
tests/e1000e-test.c
··· 25 25 26 26 27 27 #include "qemu/osdep.h" 28 + #include "qemu-common.h" 28 29 #include "libqtest.h" 29 30 #include "qemu-common.h" 30 31 #include "libqos/pci-pc.h"
+1
tests/test-filter-mirror.c
··· 9 9 */ 10 10 11 11 #include "qemu/osdep.h" 12 + #include "qemu-common.h" 12 13 #include "libqtest.h" 13 14 #include "qapi/qmp/qdict.h" 14 15 #include "qemu/iov.h"
+1
tests/test-filter-redirector.c
··· 51 51 */ 52 52 53 53 #include "qemu/osdep.h" 54 + #include "qemu-common.h" 54 55 #include "libqtest.h" 55 56 #include "qapi/qmp/qdict.h" 56 57 #include "qemu/iov.h"
+1
tests/virtio-net-test.c
··· 8 8 */ 9 9 10 10 #include "qemu/osdep.h" 11 + #include "qemu-common.h" 11 12 #include "libqtest.h" 12 13 #include "qemu/iov.h" 13 14 #include "qemu/module.h"
-1
trace/control.h
··· 10 10 #ifndef TRACE__CONTROL_H 11 11 #define TRACE__CONTROL_H 12 12 13 - #include "qemu-common.h" 14 13 #include "event-internal.h" 15 14 16 15 typedef struct TraceEventIter {
-1
ui/console-gl.c
··· 25 25 * THE SOFTWARE. 26 26 */ 27 27 #include "qemu/osdep.h" 28 - #include "qemu-common.h" 29 28 #include "ui/console.h" 30 29 #include "ui/shader.h" 31 30
-1
ui/cursor.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "ui/console.h" 4 3 5 4 #include "cursor_hidden.xpm"
-1
ui/egl-context.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "ui/egl-context.h" 4 3 5 4 QEMUGLContext qemu_egl_create_context(DisplayChangeListener *dcl,
-1
ui/gtk-egl.c
··· 12 12 */ 13 13 14 14 #include "qemu/osdep.h" 15 - #include "qemu-common.h" 16 15 17 16 #include "trace.h" 18 17
-1
ui/gtk-gl-area.c
··· 8 8 */ 9 9 10 10 #include "qemu/osdep.h" 11 - #include "qemu-common.h" 12 11 13 12 #include "trace.h" 14 13
-1
ui/gtk.c
··· 31 31 #define LOCALEDIR "po" 32 32 33 33 #include "qemu/osdep.h" 34 - #include "qemu-common.h" 35 34 #include "qapi/error.h" 36 35 #include "qapi/qapi-commands-misc.h" 37 36 #include "qemu/cutils.h"
+1
ui/keymaps.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "keymaps.h" 27 28 #include "sysemu/sysemu.h" 28 29 #include "trace.h"
-1
ui/keymaps.h
··· 25 25 #ifndef QEMU_KEYMAPS_H 26 26 #define QEMU_KEYMAPS_H 27 27 28 - #include "qemu-common.h" 29 28 #include "ui/kbd-state.h" 30 29 31 30 typedef struct {
-1
ui/qemu-pixman.c
··· 4 4 */ 5 5 6 6 #include "qemu/osdep.h" 7 - #include "qemu-common.h" 8 7 #include "ui/console.h" 9 8 #include "standard-headers/drm/drm_fourcc.h" 10 9
-1
ui/sdl2-2d.c
··· 24 24 /* Ported SDL 1.2 code to 2.0 by Dave Airlie. */ 25 25 26 26 #include "qemu/osdep.h" 27 - #include "qemu-common.h" 28 27 #include "ui/console.h" 29 28 #include "ui/input.h" 30 29 #include "ui/sdl2.h"
-1
ui/sdl2-gl.c
··· 26 26 */ 27 27 28 28 #include "qemu/osdep.h" 29 - #include "qemu-common.h" 30 29 #include "ui/console.h" 31 30 #include "ui/input.h" 32 31 #include "ui/sdl2.h"
-1
ui/sdl2-input.c
··· 24 24 /* Ported SDL 1.2 code to 2.0 by Dave Airlie. */ 25 25 26 26 #include "qemu/osdep.h" 27 - #include "qemu-common.h" 28 27 #include "ui/console.h" 29 28 #include "ui/input.h" 30 29 #include "ui/sdl2.h"
-1
ui/shader.c
··· 25 25 * THE SOFTWARE. 26 26 */ 27 27 #include "qemu/osdep.h" 28 - #include "qemu-common.h" 29 28 #include "ui/shader.h" 30 29 31 30 #include "shader/texture-blit-vert.h"
-1
ui/spice-input.c
··· 20 20 #include <spice.h> 21 21 #include <spice/enums.h> 22 22 23 - #include "qemu-common.h" 24 23 #include "ui/qemu-spice.h" 25 24 #include "ui/console.h" 26 25 #include "keymaps.h"
-1
ui/vnc-enc-tight.c
··· 31 31 /* This needs to be before jpeglib.h line because of conflict with 32 32 INT32 definitions between jmorecfg.h (included by jpeglib.h) and 33 33 Win32 basetsd.h (included by windows.h). */ 34 - #include "qemu-common.h" 35 34 36 35 #ifdef CONFIG_VNC_PNG 37 36 /* The following define is needed by pngconf.h. Otherwise it won't compile,
-1
ui/vnc.h
··· 27 27 #ifndef QEMU_VNC_H 28 28 #define QEMU_VNC_H 29 29 30 - #include "qemu-common.h" 31 30 #include "qapi/qapi-types-ui.h" 32 31 #include "qemu/queue.h" 33 32 #include "qemu/thread.h"
-1
util/aio-posix.c
··· 14 14 */ 15 15 16 16 #include "qemu/osdep.h" 17 - #include "qemu-common.h" 18 17 #include "block/block.h" 19 18 #include "qemu/rcu_queue.h" 20 19 #include "qemu/sockets.h"
-1
util/async.c
··· 25 25 26 26 #include "qemu/osdep.h" 27 27 #include "qapi/error.h" 28 - #include "qemu-common.h" 29 28 #include "block/aio.h" 30 29 #include "block/thread-pool.h" 31 30 #include "qemu/main-loop.h"
-1
util/bufferiszero.c
··· 22 22 * THE SOFTWARE. 23 23 */ 24 24 #include "qemu/osdep.h" 25 - #include "qemu-common.h" 26 25 #include "qemu/cutils.h" 27 26 #include "qemu/bswap.h" 28 27
-1
util/compatfd.c
··· 14 14 */ 15 15 16 16 #include "qemu/osdep.h" 17 - #include "qemu-common.h" 18 17 #include "qemu/thread.h" 19 18 20 19 #include <sys/syscall.h>
-1
util/coroutine-ucontext.c
··· 24 24 #endif 25 25 #include "qemu/osdep.h" 26 26 #include <ucontext.h> 27 - #include "qemu-common.h" 28 27 #include "qemu/coroutine_int.h" 29 28 30 29 #ifdef CONFIG_VALGRIND_H
-1
util/crc32c.c
··· 26 26 */ 27 27 28 28 #include "qemu/osdep.h" 29 - #include "qemu-common.h" 30 29 #include "qemu/crc32c.h" 31 30 32 31 /*
+1
util/cutils.c
··· 26 26 #include "qemu/host-utils.h" 27 27 #include <math.h> 28 28 29 + #include "qemu-common.h" 29 30 #include "qemu/sockets.h" 30 31 #include "qemu/iov.h" 31 32 #include "net/net.h"
-1
util/envlist.c
··· 1 1 #include "qemu/osdep.h" 2 - #include "qemu-common.h" 3 2 #include "qemu/queue.h" 4 3 #include "qemu/envlist.h" 5 4
-1
util/error.c
··· 14 14 15 15 #include "qemu/osdep.h" 16 16 #include "qapi/error.h" 17 - #include "qemu-common.h" 18 17 #include "qemu/error-report.h" 19 18 20 19 struct Error
-1
util/fifo8.c
··· 13 13 */ 14 14 15 15 #include "qemu/osdep.h" 16 - #include "qemu-common.h" 17 16 #include "qemu/fifo8.h" 18 17 19 18 void fifo8_create(Fifo8 *fifo, uint32_t capacity)
-1
util/getauxval.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 - #include "qemu-common.h" 27 26 28 27 #ifdef CONFIG_GETAUXVAL 29 28 /* Don't inline this in qemu/osdep.h, because pulling in <sys/auxv.h> for
-1
util/guest-random.c
··· 10 10 */ 11 11 12 12 #include "qemu/osdep.h" 13 - #include "qemu-common.h" 14 13 #include "qemu/cutils.h" 15 14 #include "qapi/error.h" 16 15 #include "qemu/guest-random.h"
-1
util/iohandler.c
··· 24 24 25 25 #include "qemu/osdep.h" 26 26 #include "qapi/error.h" 27 - #include "qemu-common.h" 28 27 #include "qemu/queue.h" 29 28 #include "block/aio.h" 30 29 #include "qemu/main-loop.h"
-1
util/log.c
··· 18 18 */ 19 19 20 20 #include "qemu/osdep.h" 21 - #include "qemu-common.h" 22 21 #include "qemu/log.h" 23 22 #include "qemu/range.h" 24 23 #include "qemu/error-report.h"
-1
util/module.c
··· 14 14 */ 15 15 16 16 #include "qemu/osdep.h" 17 - #include "qemu-common.h" 18 17 #ifdef CONFIG_MODULES 19 18 #include <gmodule.h> 20 19 #endif
-1
util/notify.c
··· 14 14 */ 15 15 16 16 #include "qemu/osdep.h" 17 - #include "qemu-common.h" 18 17 #include "qemu/notify.h" 19 18 20 19 void notifier_list_init(NotifierList *list)
+1
util/oslib-posix.c
··· 31 31 32 32 #include <glib/gprintf.h> 33 33 34 + #include "qemu-common.h" 34 35 #include "sysemu/sysemu.h" 35 36 #include "trace.h" 36 37 #include "qapi/error.h"
+2
util/oslib-win32.c
··· 29 29 * this file are based on code from GNOME glib-2 and use a different license, 30 30 * see the license comment there. 31 31 */ 32 + 32 33 #include "qemu/osdep.h" 33 34 #include <windows.h> 35 + #include "qemu-common.h" 34 36 #include "qapi/error.h" 35 37 #include "sysemu/sysemu.h" 36 38 #include "qemu/main-loop.h"
-1
util/qemu-config.c
··· 4 4 #include "qapi/qapi-commands-misc.h" 5 5 #include "qapi/qmp/qdict.h" 6 6 #include "qapi/qmp/qlist.h" 7 - #include "qemu-common.h" 8 7 #include "qemu/error-report.h" 9 8 #include "qemu/option.h" 10 9 #include "qemu/config-file.h"
-1
util/qemu-coroutine-lock.c
··· 27 27 */ 28 28 29 29 #include "qemu/osdep.h" 30 - #include "qemu-common.h" 31 30 #include "qemu/coroutine.h" 32 31 #include "qemu/coroutine_int.h" 33 32 #include "qemu/processor.h"
-1
util/qemu-coroutine.c
··· 14 14 15 15 #include "qemu/osdep.h" 16 16 #include "trace.h" 17 - #include "qemu-common.h" 18 17 #include "qemu/thread.h" 19 18 #include "qemu/atomic.h" 20 19 #include "qemu/coroutine.h"
-1
util/qemu-option.c
··· 26 26 #include "qemu/osdep.h" 27 27 28 28 #include "qapi/error.h" 29 - #include "qemu-common.h" 30 29 #include "qemu/error-report.h" 31 30 #include "qapi/qmp/qbool.h" 32 31 #include "qapi/qmp/qdict.h"
+1
util/qemu-sockets.c
··· 21 21 #include <linux/vm_sockets.h> 22 22 #endif /* CONFIG_AF_VSOCK */ 23 23 24 + #include "qemu-common.h" 24 25 #include "monitor/monitor.h" 25 26 #include "qapi/clone-visitor.h" 26 27 #include "qapi/error.h"
-1
util/rcu.c
··· 27 27 */ 28 28 29 29 #include "qemu/osdep.h" 30 - #include "qemu-common.h" 31 30 #include "qemu/rcu.h" 32 31 #include "qemu/atomic.h" 33 32 #include "qemu/thread.h"
-1
util/thread-pool.c
··· 15 15 * GNU GPL, version 2 or (at your option) any later version. 16 16 */ 17 17 #include "qemu/osdep.h" 18 - #include "qemu-common.h" 19 18 #include "qemu/queue.h" 20 19 #include "qemu/thread.h" 21 20 #include "qemu/coroutine.h"
-1
util/uuid.c
··· 14 14 */ 15 15 16 16 #include "qemu/osdep.h" 17 - #include "qemu-common.h" 18 17 #include "qemu/uuid.h" 19 18 #include "qemu/bswap.h" 20 19
+1
vl.c
··· 23 23 */ 24 24 25 25 #include "qemu/osdep.h" 26 + #include "qemu-common.h" 26 27 #include "qemu/units.h" 27 28 #include "qapi/error.h" 28 29 #include "qemu-version.h"
+1
win_dump.c
··· 9 9 */ 10 10 11 11 #include "qemu/osdep.h" 12 + #include "qemu-common.h" 12 13 #include "qemu/cutils.h" 13 14 #include "elf.h" 14 15 #include "cpu.h"