qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Juan Quintela <quintela@redhat.com>
To: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
Cc: "Alex Williamson" <alex.williamson@redhat.com>,
	"Thomas Huth" <thuth@redhat.com>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	qemu-devel@nongnu.org, "Kirti Wankhede" <kwankhede@nvidia.com>
Subject: Re: [PATCH] migration: Move populate_vfio_info() into a separate file
Date: Thu, 25 Mar 2021 13:09:35 +0100	[thread overview]
Message-ID: <87y2ebo2o0.fsf@secure.mitica> (raw)
In-Reply-To: <YFCUgJZXe0HxHbDn@work-vm> (David Alan Gilbert's message of "Tue,  16 Mar 2021 11:20:32 +0000")

"Dr. David Alan Gilbert" <dgilbert@redhat.com> wrote:
> * Thomas Huth (thuth@redhat.com) wrote:
>> On 15/03/2021 22.05, Philippe Mathieu-Daudé wrote:
>> > Hi Thomas,
>> > 
>> > +Alex
>> > 
>> > On 3/15/21 8:07 PM, Thomas Huth wrote:
>> > > The CONFIG_VFIO switch only works in target specific code. Since
>> > > migration/migration.c is common code, the #ifdef does not have
>> > > the intended behavior here. Move the related code to a separate
>> > > file now which gets compiled via specific_ss instead.
>> > > 
>> > > Fixes: 3710586caa ("qapi: Add VFIO devices migration stats in
>> > > Migration stats")
>> > > Signed-off-by: Thomas Huth <thuth@redhat.com>
>> > > ---
>> > >   migration/meson.build |  3 ++-
>> > >   migration/migration.c | 15 ---------------
>> > >   migration/migration.h |  2 ++
>> > >   migration/special.c   | 25 +++++++++++++++++++++++++
>> > >   4 files changed, 29 insertions(+), 16 deletions(-)
>> > >   create mode 100644 migration/special.c
>> > > 
>> > > diff --git a/migration/meson.build b/migration/meson.build
>> > > index 9645f44005..e1f72f6ba0 100644
>> > > --- a/migration/meson.build
>> > > +++ b/migration/meson.build
>> > > @@ -30,4 +30,5 @@ softmmu_ss.add(when: ['CONFIG_RDMA', rdma],
>> > > if_true: files('rdma.c'))
>> > >   softmmu_ss.add(when: 'CONFIG_LIVE_BLOCK_MIGRATION', if_true:
>> > > files('block.c'))
>> > >   softmmu_ss.add(when: zstd, if_true: files('multifd-zstd.c'))
>> > > -specific_ss.add(when: 'CONFIG_SOFTMMU', if_true:
>> > > files('dirtyrate.c', 'ram.c'))
>> > > +specific_ss.add(when: 'CONFIG_SOFTMMU',
>> > > +                if_true: files('dirtyrate.c', 'ram.c', 'special.c'))
>> > 
>> > Why not simply name this migration/vfio.c? That way we do not start
>> > mixed bag of everything target specific.
>> 
>> I don't mind ... well, if we have other small functions there in the future
>> that depend on CONFIG switches, a mixed bag file might not be such a bad
>> idea instead of having lots and lots of small other files ... OTOH, if there
>> is more vfio migration code in the works that might fit here, a name like
>> vfio.c would be better, of course. What do the maintainers think?
>
> Could this be done with stubs instead of an ifdef; i.e. a stub of
> 'vfio_mig_active' and 'vfio_mig_bytes_transferred'?

My understanding is that they can't (at least easily).
Because they are really target specific :-(

> As for naming 'special' is too generic.
> 'vfio' is too specific (especially since most vfio code ends up under
> hw/vfio)
>
> how about migration/target.c  as something which is explicit about why
> it's done that way.

I agree with the target name.

But I can't think of a really much easier way that what is in this
patch.

To make stubs you need to ifdef half of hw/vfio/vfio-common.h, or just
put the #ifdef in migration/target.c

Even althought I hate #ifdefs, I am not sure that the stubs options is
much clearly here.

Later, Juan.



      reply	other threads:[~2021-03-25 12:15 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-15 19:07 [PATCH] migration: Move populate_vfio_info() into a separate file Thomas Huth
2021-03-15 21:05 ` Philippe Mathieu-Daudé
2021-03-16  5:13   ` Thomas Huth
2021-03-16 11:20     ` Dr. David Alan Gilbert
2021-03-25 12:09       ` Juan Quintela [this message]

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=87y2ebo2o0.fsf@secure.mitica \
    --to=quintela@redhat.com \
    --cc=alex.williamson@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=kwankhede@nvidia.com \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=thuth@redhat.com \
    /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).