qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Juan Quintela <quintela@redhat.com>
To: Laurent Vivier <lvivier@redhat.com>
Cc: qemu-devel@nongnu.org, dgilbert@redhat.com, peterx@redhat.com
Subject: Re: [Qemu-devel] [PATCH 02/11] migration: Remove unneeded includes of migration/vmstate.h
Date: Tue, 30 May 2017 17:27:25 +0200	[thread overview]
Message-ID: <87bmqafjqa.fsf@secure.mitica> (raw)
In-Reply-To: <6a45fac0-cbe2-8146-2741-c3589d759c04@redhat.com> (Laurent Vivier's message of "Wed, 24 May 2017 18:20:45 +0200")

Laurent Vivier <lvivier@redhat.com> wrote:
> On 18/05/2017 19:25, Juan Quintela wrote:
>> Signed-off-by: Juan Quintela <quintela@redhat.com>
>> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
>> ---
>>  hw/core/qdev.c                   | 1 -
>>  include/hw/acpi/memory_hotplug.h | 1 -
>>  include/hw/acpi/pcihp.h          | 1 -
>>  include/hw/pci/shpc.h            | 1 -
>>  include/net/net.h                | 1 -
>>  target/alpha/cpu.c               | 1 -
>>  target/hppa/cpu.c                | 1 -
>>  target/s390x/cpu.c               | 1 -
>>  target/tilegx/cpu.c              | 1 -
>>  9 files changed, 9 deletions(-)
>> 
>> diff --git a/hw/core/qdev.c b/hw/core/qdev.c
>> index 71ff95f..0ce45a2 100644
>> --- a/hw/core/qdev.c
>> +++ b/hw/core/qdev.c
>> @@ -37,7 +37,6 @@
>>  #include "hw/boards.h"
>>  #include "hw/sysbus.h"
>>  #include "qapi-event.h"
>> -#include "migration/vmstate.h"
>>  
>>  bool qdev_hotplug = false;
>>  static bool qdev_hot_added = false;
>
> This one uses "VMStateDescription", "vmstate_check_only_migratable",
> "vmstate_register_with_alias_id" and "vmstate_unregister" from
> migration/savevm.h

#includes "hw/qdev.h"

which 1st include is

#include "hw/hw.h"

which include "migration/vmstate.h"

After this series the only include file that includes
migration/vmstate.h is hw/hw.h.  Removing it makes no sense (IMHO)
because it would mean including it directly in more than half of the tree.

>
>> diff --git a/include/hw/acpi/memory_hotplug.h b/include/hw/acpi/memory_hotplug.h
>> index db8ebc9..77c6576 100644
>> --- a/include/hw/acpi/memory_hotplug.h
>> +++ b/include/hw/acpi/memory_hotplug.h
>> @@ -3,7 +3,6 @@
>>  
>>  #include "hw/qdev-core.h"
>>  #include "hw/acpi/acpi.h"
>> -#include "migration/vmstate.h"
>>  #include "hw/acpi/aml-build.h"
>>  
>>  /**
>
> This one uses "VMSTATE_STRUCT()" which is defined in migration/vmstate.h

#include "hw/acpi/acpi.h"

which includes:

#include "hw/acpi/acpi_dev_interface.h"

->

#include "hw/boards.h"

->

#include "hw/hw.h"

>> diff --git a/include/hw/acpi/pcihp.h b/include/hw/acpi/pcihp.h
>> index 04528b7..8a65f99 100644
>> --- a/include/hw/acpi/pcihp.h
>> +++ b/include/hw/acpi/pcihp.h
>> @@ -28,7 +28,6 @@
>>  #define HW_ACPI_PCIHP_H
>>  
>>  #include "hw/acpi/acpi.h"
>> -#include "migration/vmstate.h"
>>  #include "hw/hotplug.h"
>>  
>>  #define ACPI_PCIHP_IO_BASE_PROP "acpi-pcihp-io-base"
>
> This one uses "VMSTATE_STRUCT()" which is defined in migration/vmstate.h

see previous one

>> diff --git a/include/hw/pci/shpc.h b/include/hw/pci/shpc.h
>> index b208554..71e836b 100644
>> --- a/include/hw/pci/shpc.h
>> +++ b/include/hw/pci/shpc.h
>> @@ -3,7 +3,6 @@
>>  
>>  #include "qemu-common.h"
>>  #include "exec/memory.h"
>> -#include "migration/vmstate.h"
>>  #include "hw/hotplug.h"
>>  #include "hw/pci/pci.h"
>
> This one uses "VMSTATE_BUFFER_UNSAFE_INFO_TEST()" which is defined in
> migration/vmstate.h.

#include "hw/pci/pci.h"
->
#include "hw/qedev.h"
->
#included "hw/hw.h"

>>  
>> diff --git a/include/net/net.h b/include/net/net.h
>> index 99b28d5..ba663bd 100644
>> --- a/include/net/net.h
>> +++ b/include/net/net.h
>> @@ -6,7 +6,6 @@
>>  #include "qapi/qmp/qdict.h"
>>  #include "qemu/option.h"
>>  #include "net/queue.h"
>> -#include "migration/vmstate.h"
>>  #include "qapi-types.h"
>>  
>>  #define MAC_FMT "%02X:%02X:%02X:%02X:%02X:%02X"
>
> This one uses "vmstate_offset_array()" which is defined in
> migration/vmstate.h
>
> Perhaps you can explain why you think they are unneeded?

In all previous ones, they arrive to hw/hw.h for means that are not
going to be removed.  For this one, I am getting trouble finding a
normal chain.

#include "qemu/osdep.h"
#include "net/net.h"

with this change works.  But I am not able to find *why*.

So, I am dropping this last bit.

Is that ok for you?

Later, Juan.

  reply	other threads:[~2017-05-30 15:27 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-18 17:25 [Qemu-devel] [PATCH 00/11] Another cleanup of includes Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 01/11] migration: Create savevm.h for functions exported from savevm.c Juan Quintela
2017-05-24 16:03   ` Laurent Vivier
2017-05-18 17:25 ` [Qemu-devel] [PATCH 02/11] migration: Remove unneeded includes of migration/vmstate.h Juan Quintela
2017-05-24 16:20   ` Laurent Vivier
2017-05-30 15:27     ` Juan Quintela [this message]
2017-05-31 11:15       ` Laurent Vivier
2017-05-18 17:25 ` [Qemu-devel] [PATCH 03/11] migration: Split qemu-file.h Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 04/11] migration: Export exec.c functions in its own file Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 05/11] migration: Export fd.c " Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 06/11] migration: Export socket.c " Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 07/11] migration: Export tls.c " Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 08/11] migration: Export rdma.c " Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 09/11] migration: Create include for migration snapshots Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 10/11] migration: Export ram.c functions in its own file Juan Quintela
2017-05-18 17:25 ` [Qemu-devel] [PATCH 11/11] migration: Move include/migration/block.h into migration/ Juan Quintela

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87bmqafjqa.fsf@secure.mitica \
    --to=quintela@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).