mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-19 08:02:15 -06:00
include/system: Move exec/ramblock.h to system/ramblock.h
Convert the existing includes with sed. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
4705a71db5
commit
548a01650c
18 changed files with 21 additions and 22 deletions
|
@ -3122,7 +3122,7 @@ F: include/system/ioport.h
|
||||||
F: include/exec/memop.h
|
F: include/exec/memop.h
|
||||||
F: include/system/memory.h
|
F: include/system/memory.h
|
||||||
F: include/system/ram_addr.h
|
F: include/system/ram_addr.h
|
||||||
F: include/exec/ramblock.h
|
F: include/system/ramblock.h
|
||||||
F: include/system/memory_mapping.h
|
F: include/system/memory_mapping.h
|
||||||
F: system/dma-helpers.c
|
F: system/dma-helpers.c
|
||||||
F: system/ioport.c
|
F: system/ioport.c
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include "hw/virtio/virtio-gpu.h"
|
#include "hw/virtio/virtio-gpu.h"
|
||||||
#include "hw/virtio/virtio-gpu-pixman.h"
|
#include "hw/virtio/virtio-gpu-pixman.h"
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "system/hostmem.h"
|
#include "system/hostmem.h"
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <linux/memfd.h>
|
#include <linux/memfd.h>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#include "system/address-spaces.h"
|
#include "system/address-spaces.h"
|
||||||
#include "exec/cpu-common.h"
|
#include "exec/cpu-common.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "hw/boards.h"
|
#include "hw/boards.h"
|
||||||
#include "hw/hyperv/dynmem-proto.h"
|
#include "hw/hyperv/dynmem-proto.h"
|
||||||
#include "hw/hyperv/hv-balloon.h"
|
#include "hw/hyperv/hv-balloon.h"
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#include "system/cryptodev.h"
|
#include "system/cryptodev.h"
|
||||||
#include "migration/postcopy-ram.h"
|
#include "migration/postcopy-ram.h"
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
|
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#include "system/tcg.h"
|
#include "system/tcg.h"
|
||||||
#include "exec/cputlb.h"
|
#include "exec/cputlb.h"
|
||||||
#include "exec/ramlist.h"
|
#include "exec/ramlist.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "exec/exec-all.h"
|
#include "exec/exec-all.h"
|
||||||
#include "system/memory.h"
|
#include "system/memory.h"
|
||||||
#include "exec/target_page.h"
|
#include "exec/target_page.h"
|
||||||
|
|
|
@ -16,11 +16,10 @@
|
||||||
* The functions declared here will be removed soon.
|
* The functions declared here will be removed soon.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef QEMU_EXEC_RAMBLOCK_H
|
#ifndef SYSTEM_RAMBLOCK_H
|
||||||
#define QEMU_EXEC_RAMBLOCK_H
|
#define SYSTEM_RAMBLOCK_H
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#include "exec/cpu-common.h"
|
||||||
#include "cpu-common.h"
|
|
||||||
#include "qemu/rcu.h"
|
#include "qemu/rcu.h"
|
||||||
#include "exec/ramlist.h"
|
#include "exec/ramlist.h"
|
||||||
|
|
||||||
|
@ -91,5 +90,5 @@ struct RAMBlock {
|
||||||
*/
|
*/
|
||||||
ram_addr_t postcopy_length;
|
ram_addr_t postcopy_length;
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
|
@ -14,7 +14,7 @@
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "exec/target_page.h"
|
#include "exec/target_page.h"
|
||||||
#include "qemu/rcu_queue.h"
|
#include "qemu/rcu_queue.h"
|
||||||
#include "qemu/main-loop.h"
|
#include "qemu/main-loop.h"
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "qemu/cutils.h"
|
#include "qemu/cutils.h"
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "exec/target_page.h"
|
#include "exec/target_page.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
#include "migration-stats.h"
|
#include "migration-stats.h"
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
#include "qapi/qapi-types-migration.h"
|
#include "qapi/qapi-types-migration.h"
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
#include "qemu/module.h"
|
#include "qemu/module.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "qapi/qapi-types-migration.h"
|
#include "qapi/qapi-types-migration.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "multifd.h"
|
#include "multifd.h"
|
||||||
#include "qpl/qpl.h"
|
#include "qpl/qpl.h"
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "qemu/module.h"
|
#include "qemu/module.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "migration.h"
|
#include "migration.h"
|
||||||
#include "multifd.h"
|
#include "multifd.h"
|
||||||
#include "options.h"
|
#include "options.h"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "qemu/cutils.h"
|
#include "qemu/cutils.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "migration.h"
|
#include "migration.h"
|
||||||
#include "migration-stats.h"
|
#include "migration-stats.h"
|
||||||
#include "multifd.h"
|
#include "multifd.h"
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include <zlib.h>
|
#include <zlib.h>
|
||||||
#include "qemu/rcu.h"
|
#include "qemu/rcu.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "exec/target_page.h"
|
#include "exec/target_page.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "migration.h"
|
#include "migration.h"
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include <zstd.h>
|
#include <zstd.h>
|
||||||
#include "qemu/rcu.h"
|
#include "qemu/rcu.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "exec/target_page.h"
|
#include "exec/target_page.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "migration.h"
|
#include "migration.h"
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
#include "qemu/rcu.h"
|
#include "qemu/rcu.h"
|
||||||
#include "exec/target_page.h"
|
#include "exec/target_page.h"
|
||||||
#include "system/system.h"
|
#include "system/system.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
#include "hw/boards.h"
|
#include "hw/boards.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "socket.h"
|
#include "socket.h"
|
||||||
#include "yank_functions.h"
|
#include "yank_functions.h"
|
||||||
#include "tls.h"
|
#include "tls.h"
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include "fuzz.h"
|
#include "fuzz.h"
|
||||||
#include "string.h"
|
#include "string.h"
|
||||||
#include "system/memory.h"
|
#include "system/memory.h"
|
||||||
#include "exec/ramblock.h"
|
#include "system/ramblock.h"
|
||||||
#include "hw/qdev-core.h"
|
#include "hw/qdev-core.h"
|
||||||
#include "hw/pci/pci.h"
|
#include "hw/pci/pci.h"
|
||||||
#include "hw/pci/pci_device.h"
|
#include "hw/pci/pci_device.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue