From: Igor Mammedov <imammedo@redhat.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: Michael Roth <mdroth@linux.vnet.ibm.com>,
Laurent Vivier <lvivier@redhat.com>,
Thomas Huth <thuth@redhat.com>,
qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
Juan Quintela <quintela@redhat.com>,
Marcel Apfelbaum <marcel@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] spapr: manage hotplugged devices while the VM is not started
Date: Fri, 16 Jun 2017 17:58:23 +0200 [thread overview]
Message-ID: <20170616175823.3308616c@nial.brq.redhat.com> (raw)
In-Reply-To: <20170616144053.GH30484@umbus>
On Fri, 16 Jun 2017 22:40:53 +0800
David Gibson <david@gibson.dropbear.id.au> wrote:
> On Fri, Jun 16, 2017 at 03:53:12PM +0200, Igor Mammedov wrote:
> > On Wed, 14 Jun 2017 19:27:12 -0500
> > Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
> >
> > > Quoting Igor Mammedov (2017-06-14 04:00:01)
> > > > On Tue, 13 Jun 2017 16:42:45 -0500
> > > > Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
> > > >
> > > > > Quoting Igor Mammedov (2017-06-09 03:27:33)
[...]
> > > >
> > > > May be we should
> > > > 1. make DeviceState:hotpluggable property write-able again
> > > > 2. transmit DeviceState:hotpluggable as part of migration stream
> > > > 3. add generic migration hook which will check if target and
> > > > source value match, if value differs => fail/abort migration.
> > > > 4. in case values mismatch mgmt will be forced to explicitly
> > > > provide hotplugged property value on -device/device_add
> > > > That would enforce consistent DeviceState:hotpluggable value
> > > > on target and source.
> > > > We can enforce it only for new machine types so it won't break
> > > > old mgmt tools with old machine types but would force mgmt
> > > > for new machines to use hotplugged property on target
> > > > so QEMU could rely on its value for migration purposes.
> > > >
> > >
> > > That would work, and generalizing this beyond spapr seems
> > > appropriate.
> > >
> > > It also has reasonable semantics, and it would work for us
> > > *provided that* we always send DRC state for hotplugged devices
> > > and not just DRCs in a transitional state:
> > >
> > > SRC1: device_add $cpu
> > > -> dev->hotplugged == true
> > > -> device starts in pre-hotplug, ends up in post-hotplug state
> > > after guest onlines it
> > > <migrate>
> > > DST1: device_add $cpu,hotplugged=true
> > > -> dev->hotplugged == true
> > > -> device starts in pre-hotplug state. guest sends updated state
> > > to transition DRC to post-hotplug
> > >
> > > But what about stuff like mem/pci? Currently, migration works for
> > > cases like:
> > >
> > > SRC1: device_add virtio-net-pci
> > > DST1: qemu -device virtio-net-pci
> > >
> > > Even though DST1 has dev->hotplugged == false, and SRC1 has the
> > > opposite. So for new machines, checking SRC1:dev->hotplugged ==
> > > DST1:dev->hotplugged would fail, even though the migration
> > > scenario is unchanged from before.
> > >
> > > So management would now have to do:
> > >
> > > SRC1: device_add virtio-net-pci
> > > DST1: qemu -device virtio-net-pci,hotplugged=true
> > >
> > > But the code behavior is a bit different then, since we now get
> > > an ACPI hotplug event via the hotplug handler. Maybe the
> > > migration stream fixes that up for us, but I think we would need
> > > to audit this and similar cases to be sure.
> > >
> > > That's all fine if it's necessary, but I feel like this is
> > > the hard way to address what's actually a much more specific
> > > issue: that device_add before machine-start doesn't currently
> > > match the behavior for a device started via cmdline. i.e.
> > > dev->hotplugged in the former vs. !dev->hotplugged in the
> > > latter. I don't really see a good reason these 2 cases should
> > > be different, and we can bring them to parity by doing
> > > something like:
> > >
> > > 1. For device_adds after qdev_machine_creation_done(), but
> > > before machine start, set a flag: reset_before_start.
> > > 2. At the start of processing migration stream, or unpausing
> > > a -S guest (in the non-migration case), issue a system-wide
> > > reset if reset_before_start is set.
> > > 3. reset handlers will already unset dev->hotplugged at that
> > > point and re-execute all the hotplug hooks with
> > > dev->hotplugged == false. This should put everything in
> > > a state that's identical to cmdline-created devices.
> > instead of flag for non migration case we could use
> > RUN_STATE_PRELAUNCH -> RUN_STATE_RUNNING
> > transition to reset all devices or
> > maybe do something like this:
>
> Hrm, does the general reset call happen now before or after this
> transition? Resetting DRCs at CAS time should accomplish the same thing.
currently it's before, see vl.c
qdev_machine_creation_done();
qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
qemu_run_machine_init_done_notifiers();
...
qemu_system_reset(SHUTDOWN_CAUSE_NONE);
register_global_state();
if (replay_mode != REPLAY_MODE_NONE) {
replay_vmstate_init();
} else if (loadvm) {
Error *local_err = NULL;
if (load_snapshot(loadvm, &local_err) < 0) {
error_report_err(local_err);
autostart = 0;
}
}
...
} else if (autostart) {
vm_start();
}
...
main_loop(); <-- currently device_add works here
simplified version:
without migration and with -S option 'autostart = 0'
so we get monitor/qmp prompt with RUN_STATE_PRELAUNCH
and when command 'cont' is issued,
RUN_STATE_PRELAUNCH -> RUN_STATE_RUNNING
>
> > diff --git a/hw/core/qdev.c b/hw/core/qdev.c
> > index 0ce45a2..cdeb8f8 100644
> > --- a/hw/core/qdev.c
> > +++ b/hw/core/qdev.c
> >
> > @@ -1020,7 +1010,7 @@ static void device_initfn(Object *obj)
> > ObjectClass *class;
> > Property *prop;
> >
> > - if (qdev_hotplug) {
> > + if (runstate_check(RUN_STATE_RUNNING) || ...) {
> > dev->hotplugged = 1;
> > qdev_hot_added = true;
> > }
> >
> > > 4. Only allow management to do device_add before it sends
> > > the migration stream (if management doesn't already guard
> > > against this then it's probably a bug anyway)
> > seems like Juan already took care of it.
> >
> > > This allows management to treat device_add/cmdline as being
> > > completely synonymous for guests that haven't started yet,
> > > both for -incoming and -S in general, and it maintains
> > > the behavior that existing migration code expects of
> > > cmdline-specified devices.
> >
> >
>
next prev parent reply other threads:[~2017-06-16 15:58 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-30 16:04 [Qemu-devel] [PATCH] spapr: manage hotplugged devices while the VM is not started Laurent Vivier
2017-05-30 16:35 ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-05-31 4:35 ` [Qemu-devel] " David Gibson
2017-05-31 7:12 ` Laurent Vivier
2017-05-31 9:06 ` Igor Mammedov
2017-06-08 20:00 ` Michael Roth
2017-06-09 8:27 ` Igor Mammedov
2017-06-09 10:53 ` David Gibson
2017-06-13 21:42 ` Michael Roth
2017-06-14 9:00 ` Igor Mammedov
2017-06-14 9:26 ` Juan Quintela
2017-06-14 11:59 ` Dr. David Alan Gilbert
2017-06-15 0:27 ` Michael Roth
2017-06-16 13:53 ` Igor Mammedov
2017-06-16 14:40 ` David Gibson
2017-06-16 15:58 ` Igor Mammedov [this message]
2017-06-16 16:15 ` Michael Roth
2017-06-18 9:59 ` David Gibson
2017-06-18 12:37 ` Michael Roth
2017-06-18 13:38 ` David Gibson
2017-06-16 17:19 ` Michael Roth
2017-06-18 10:24 ` David Gibson
2017-06-18 12:52 ` Michael Roth
2017-06-19 12:40 ` Marcel Apfelbaum
2017-06-19 13:30 ` [Qemu-devel] [Qemu-ppc] " Daniel Henrique Barboza
2017-06-09 10:49 ` [Qemu-devel] " David Gibson
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=20170616175823.3308616c@nial.brq.redhat.com \
--to=imammedo@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=dgilbert@redhat.com \
--cc=lvivier@redhat.com \
--cc=marcel@redhat.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=quintela@redhat.com \
--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).