[Qemu-devel] [PATCH 00/11] Another cleanup of includes

Juan Quintela posted 11 patches 6 years, 11 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170518172543.32694-1-quintela@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
There is a newer version of this series
hmp.c                                        |   5 +-
hw/core/qdev.c                               |   1 -
hw/i2c/i2c-ddc.c                             |   1 +
hw/intc/s390_flic.c                          |   1 -
hw/intc/s390_flic_kvm.c                      |   1 -
hw/s390x/s390-skeys.c                        |   1 -
include/block/block_int.h                    |   4 +-
include/hw/acpi/memory_hotplug.h             |   1 -
include/hw/acpi/pcihp.h                      |   1 -
include/hw/hw.h                              |   2 +-
include/hw/pci/shpc.h                        |   1 -
include/migration/migration.h                |  68 -----------
include/migration/misc.h                     |  29 +++++
include/migration/qemu-file-types.h          | 164 +++++++++++++++++++++++++++
include/migration/snapshot.h                 |  20 ++++
include/net/net.h                            |   1 -
include/sysemu/sysemu.h                      |  50 --------
migration/block.c                            |   5 +-
{include/migration => migration}/block.h     |   2 -
migration/channel.c                          |   1 +
migration/colo.c                             |   5 +-
migration/exec.c                             |   1 +
migration/exec.h                             |  26 +++++
migration/fd.c                               |   1 +
migration/fd.h                               |  23 ++++
migration/migration.c                        |  11 +-
migration/postcopy-ram.c                     |   4 +-
migration/qemu-file-channel.c                |   3 +-
migration/qemu-file.c                        |   2 +-
{include/migration => migration}/qemu-file.h | 157 +------------------------
migration/ram.c                              |   4 +-
migration/ram.h                              |  70 ++++++++++++
migration/rdma.c                             |   5 +-
migration/rdma.h                             |  25 ++++
migration/savevm.c                           |  36 +++++-
migration/savevm.h                           |  41 +++++++
migration/socket.c                           |   3 +-
migration/socket.h                           |  28 +++++
migration/tls.c                              |   1 +
migration/tls.h                              |  34 ++++++
migration/vmstate-types.c                    |   3 +-
migration/vmstate.c                          |   2 +-
replay/replay-snapshot.c                     |   5 +-
target/alpha/cpu.c                           |   1 -
target/hppa/cpu.c                            |   1 -
target/s390x/cpu.c                           |   1 -
target/tilegx/cpu.c                          |   1 -
tests/test-vmstate.c                         |   3 +-
vl.c                                         |   5 +-
49 files changed, 544 insertions(+), 317 deletions(-)
create mode 100644 include/migration/misc.h
create mode 100644 include/migration/qemu-file-types.h
create mode 100644 include/migration/snapshot.h
rename {include/migration => migration}/block.h (93%)
create mode 100644 migration/exec.h
create mode 100644 migration/fd.h
rename {include/migration => migration}/qemu-file.h (62%)
create mode 100644 migration/ram.h
create mode 100644 migration/rdma.h
create mode 100644 migration/savevm.h
create mode 100644 migration/socket.h
create mode 100644 migration/tls.h
[Qemu-devel] [PATCH 00/11] Another cleanup of includes
Posted by Juan Quintela 6 years, 11 months ago
Hi

This series:
- make all migration methods export its functions in its own header
- move block.h into migration/
- create migration/savevm.h for functions exported in savevm.c
- create migration/ram.h for functions from ram.c
- split qemu-file.h into it an qemu-file-types.h
  only the last one is used outside of migration/
- move migration.h to be private
- create include/migration/misc.h for misc exported functions that
  don't belong anywhere

Please review.

Thanks, Juan.



Juan Quintela (11):
  migration: Create savevm.h for functions exported from savevm.c
  migration: Remove unneeded includes of migration/vmstate.h
  migration: Split qemu-file.h
  migration: Export exec.c functions in its own file
  migration: Export fd.c functions in its own file
  migration: Export socket.c functions in its own file
  migration: Export tls.c functions in its own file
  migration: Export rdma.c functions in its own file
  migration: Create include for migration snapshots
  migration: Export ram.c functions in its own file
  migration: Move include/migration/block.h into migration/

 hmp.c                                        |   5 +-
 hw/core/qdev.c                               |   1 -
 hw/i2c/i2c-ddc.c                             |   1 +
 hw/intc/s390_flic.c                          |   1 -
 hw/intc/s390_flic_kvm.c                      |   1 -
 hw/s390x/s390-skeys.c                        |   1 -
 include/block/block_int.h                    |   4 +-
 include/hw/acpi/memory_hotplug.h             |   1 -
 include/hw/acpi/pcihp.h                      |   1 -
 include/hw/hw.h                              |   2 +-
 include/hw/pci/shpc.h                        |   1 -
 include/migration/migration.h                |  68 -----------
 include/migration/misc.h                     |  29 +++++
 include/migration/qemu-file-types.h          | 164 +++++++++++++++++++++++++++
 include/migration/snapshot.h                 |  20 ++++
 include/net/net.h                            |   1 -
 include/sysemu/sysemu.h                      |  50 --------
 migration/block.c                            |   5 +-
 {include/migration => migration}/block.h     |   2 -
 migration/channel.c                          |   1 +
 migration/colo.c                             |   5 +-
 migration/exec.c                             |   1 +
 migration/exec.h                             |  26 +++++
 migration/fd.c                               |   1 +
 migration/fd.h                               |  23 ++++
 migration/migration.c                        |  11 +-
 migration/postcopy-ram.c                     |   4 +-
 migration/qemu-file-channel.c                |   3 +-
 migration/qemu-file.c                        |   2 +-
 {include/migration => migration}/qemu-file.h | 157 +------------------------
 migration/ram.c                              |   4 +-
 migration/ram.h                              |  70 ++++++++++++
 migration/rdma.c                             |   5 +-
 migration/rdma.h                             |  25 ++++
 migration/savevm.c                           |  36 +++++-
 migration/savevm.h                           |  41 +++++++
 migration/socket.c                           |   3 +-
 migration/socket.h                           |  28 +++++
 migration/tls.c                              |   1 +
 migration/tls.h                              |  34 ++++++
 migration/vmstate-types.c                    |   3 +-
 migration/vmstate.c                          |   2 +-
 replay/replay-snapshot.c                     |   5 +-
 target/alpha/cpu.c                           |   1 -
 target/hppa/cpu.c                            |   1 -
 target/s390x/cpu.c                           |   1 -
 target/tilegx/cpu.c                          |   1 -
 tests/test-vmstate.c                         |   3 +-
 vl.c                                         |   5 +-
 49 files changed, 544 insertions(+), 317 deletions(-)
 create mode 100644 include/migration/misc.h
 create mode 100644 include/migration/qemu-file-types.h
 create mode 100644 include/migration/snapshot.h
 rename {include/migration => migration}/block.h (93%)
 create mode 100644 migration/exec.h
 create mode 100644 migration/fd.h
 rename {include/migration => migration}/qemu-file.h (62%)
 create mode 100644 migration/ram.h
 create mode 100644 migration/rdma.h
 create mode 100644 migration/savevm.h
 create mode 100644 migration/socket.h
 create mode 100644 migration/tls.h

-- 
2.9.3