qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Serge Hallyn <serge.hallyn@ubuntu.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: "Ryan Harper" <ryan.harper@canonical.com>,
	"Serge Hallyn" <serge.hallyn@canonical.com>,
	"quintela@redhat.com" <quintela@redhat.com>,
	Libvirt <libvir-list@redhat.com>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
	"Alexander Graf" <agraf@suse.de>, "Alex Bligh" <alex@alex.org.uk>,
	"Cole Robinson" <crobinso@redhat.com>,
	"Amit Shah" <amit.shah@redhat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Bruce Rogers" <brogers@suse.com>,
	"Andreas Färber" <afaerber@suse.de>
Subject: Re: [Qemu-devel] [PATCH] [RFC] Add machine type pc-1.0-qemu-kvm for live migrate compatibility with qemu-kvm
Date: Mon, 4 Aug 2014 15:08:31 +0000	[thread overview]
Message-ID: <20140804150831.GI9893@ubuntumail> (raw)
In-Reply-To: <20140804133428.GB17436@redhat.com>

Quoting Michael S. Tsirkin (mst@redhat.com):
> On Tue, Jul 29, 2014 at 08:31:28AM +0100, Alex Bligh wrote:
> > Serge,
> > 
> > > I don't think that is in any way a problem.  Is migrating to older
> > > versions ever actually expected to work?  In either case I don't
> > > think for this particular case it's a problem.
> > 
> > Good; no; and good - respectively.
> > 
> > > (The "how to handle this in libvirt" question is more interesting)
> > 
> > I've been giving this some thought. However rococo we make this,
> > I think the caller is often going to need to modify the command
> > line anyway, i.e. is going to need to be aware of the migration
> > problem.
> > 
> > For instance, taking Ubuntu as an example, 12.04 shipped with
> > qemu-kvm-1.0, and a pxe-virtio.rom of just under 64k, giving
> > a 64k ROM slot. 14.04 ships with qemu-2.0 and a pxe-virtio.rom
> > of over 80k, giving a 128k ROM slot. So however we fix the
> > machine types, when migrating in a 12.04 initiated VM, qemu
> > will need
> >  -global virtio-net-pci.romfile=/path/to/pxe-virtio.rom.12.04
> > on the command line (or, if you don't much care about PXE
> > working on a soft reboot, a blank file of the same size),
> > whereas when migrating in a 14.04 initiated VM, that must
> > not be on the command line.
> > 
> > Fixing this properly would entail requiring that the ROMs are
> > (effectively) distributed with qemu or at least that all
> > ROM sizes become part of the machine type standard. This
> > would have the advantage that loading a larger ROM than
> > the machine type specifies would fail unless the ROM
> > size was explicitly configured on the command line. But
> > this is a subject wider than this patch.
> > 
> > So the long and the short of it is that libvirt (sadly) like
> > anything else starting qemu machines needs to know a bit about
> > different versions of qemu, and be able to replace a machine
> > type option with a machine type option and more on the
> > command line.
> > 
> > My previous suggestion doesn't help much because qemu will
> > still need to be passed something on the command line.
> > 
> > I think the best way to go with this patch would be something
> > like:
> > 
> > * Add pc-1.0-qemu-kvm as a machine type (done)
> > 
> > * Rename pc-1.0 to pc-1.0-qemu-git
> > 
> > * Add an alias for pc-1.0 to either pc-1.0-qemu-git or
> >   pc-1.0-qemu-kvm, configurable at build time with
> >   a ./configure option. The distro can then set this
> >   appropriately. This would default to pc-1.0-qemu-git
> >   (i.e. the current behaviour).
> > 
> > On distros that only every used one of the above,
> > ./configure will sort things out, +/- self-inflicted
> > injuries relating to ROM size changes. If life is
> > more complicated, libvirt (and other callers) will
> > need to be aware. pc-1.0-qemu-git and pc-1.0-qemu-kvm
> > can be used to unambiguously mean the relevant machine
> > type, which will fix things going forward for that
> > machine type.
> > 
> > WDYT?
> 
> 
> This just means we perpetuate the broken-ness.
> 
> I would rather we teach libvirt to do the right thing
> unconditionally.

Well, now, here's a thought - can we hot-patch qemu to
change the machine type while it is running before the
migrate?  Just s/pc-1.0/pc-x.0/ or something?

  reply	other threads:[~2014-08-04 15:09 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-22 18:43 [Qemu-devel] [PATCH] [RFC] Add machine type pc-1.0-qemu-kvm for live migrate compatibility with qemu-kvm Alex Bligh
2014-07-25 16:01 ` Alex Bligh
2014-07-26  7:38   ` Paolo Bonzini
2014-07-27 13:09 ` Alex Bligh
2014-07-27 14:10 ` Andreas Färber
2014-07-27 17:04   ` Alex Bligh
2014-07-27 21:03 ` Alex Bligh
2014-07-29  4:16   ` Serge Hallyn
2014-07-29  7:31     ` Alex Bligh
2014-07-29 13:03       ` Serge E. Hallyn
2014-07-29 13:15         ` Alex Bligh
2014-07-29 13:21         ` Paolo Bonzini
2014-07-29 13:27           ` Serge Hallyn
2014-07-29 13:35             ` Paolo Bonzini
2014-07-29 13:39               ` Alex Bligh
2014-07-29 13:42                 ` Paolo Bonzini
2014-07-29 13:56                   ` Alex Bligh
2014-07-29 14:00                     ` Paolo Bonzini
2014-07-29 15:05                       ` Alex Bligh
2014-07-29 13:41               ` Serge Hallyn
2014-07-29 13:38           ` Alex Bligh
2014-07-29 13:41             ` Serge Hallyn
2014-08-04 13:34       ` Michael S. Tsirkin
2014-08-04 15:08         ` Serge Hallyn [this message]
2014-08-04 15:26           ` Michael S. Tsirkin
2014-08-04 15:38             ` Serge Hallyn
2014-08-04 15:47               ` Alex Bligh
2014-08-04 16:13                 ` Michael S. Tsirkin

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=20140804150831.GI9893@ubuntumail \
    --to=serge.hallyn@ubuntu.com \
    --cc=afaerber@suse.de \
    --cc=agraf@suse.de \
    --cc=alex@alex.org.uk \
    --cc=amit.shah@redhat.com \
    --cc=brogers@suse.com \
    --cc=crobinso@redhat.com \
    --cc=libvir-list@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    --cc=ryan.harper@canonical.com \
    --cc=serge.hallyn@canonical.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).