From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=38495 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PMfis-0000fM-O3 for qemu-devel@nongnu.org; Sun, 28 Nov 2010 06:47:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PMfir-0001zB-Hr for qemu-devel@nongnu.org; Sun, 28 Nov 2010 06:47:14 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39123) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PMfir-0001yz-3w for qemu-devel@nongnu.org; Sun, 28 Nov 2010 06:47:13 -0500 Date: Sun, 28 Nov 2010 13:46:28 +0200 From: "Michael S. Tsirkin" Message-ID: <20101128114627.GC4499@redhat.com> References: <1290665220-26478-1-git-send-email-tamura.yoshiaki@lab.ntt.co.jp> <1290665220-26478-6-git-send-email-tamura.yoshiaki@lab.ntt.co.jp> <20101128092857.GA3342@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] Re: [PATCH 05/21] virtio: modify save/load handler to handle inuse varialble. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Yoshiaki Tamura Cc: aliguori@us.ibm.com, dlaor@redhat.com, ananth@in.ibm.com, kvm@vger.kernel.org, ohmura.kei@lab.ntt.co.jp, mtosatti@redhat.com, qemu-devel@nongnu.org, vatsa@linux.vnet.ibm.com, avi@redhat.com, psuriset@linux.vnet.ibm.com, stefanha@linux.vnet.ibm.com On Sun, Nov 28, 2010 at 08:27:58PM +0900, Yoshiaki Tamura wrote: > 2010/11/28 Michael S. Tsirkin : > > On Thu, Nov 25, 2010 at 03:06:44PM +0900, Yoshiaki Tamura wrote: > >> Modify inuse type to uint16_t, let save/load to handle, and revert > >> last_avail_idx with inuse if there are outstanding emulation. > >> > >> Signed-off-by: Yoshiaki Tamura > > > > This changes migration format, so it will break compatibility with > > existing drivers. More generally, I think migrating internal > > state that is not guest visible is always a mistake > > as it ties migration format to an internal implementation > > (yes, I know we do this sometimes, but we should at least > > try not to add such cases). =A0I think the right thing to do in this = case > > is to flush outstanding > > work when vm is stopped. =A0Then, we are guaranteed that inuse is 0. > > I sent patches that do this for virtio net and block. >=20 > Could you give me the link of your patches? I'd like to test > whether they work with Kemari upon failover. If they do, I'm > happy to drop this patch. >=20 > Yoshi Look for this: stable migration image on a stopped vm sent on: Wed, 24 Nov 2010 17:52:49 +0200 > > > >> --- > >> =A0hw/virtio.c | =A0 =A08 +++++++- > >> =A01 files changed, 7 insertions(+), 1 deletions(-) > >> > >> diff --git a/hw/virtio.c b/hw/virtio.c > >> index 849a60f..5509644 100644 > >> --- a/hw/virtio.c > >> +++ b/hw/virtio.c > >> @@ -72,7 +72,7 @@ struct VirtQueue > >> =A0 =A0 =A0VRing vring; > >> =A0 =A0 =A0target_phys_addr_t pa; > >> =A0 =A0 =A0uint16_t last_avail_idx; > >> - =A0 =A0int inuse; > >> + =A0 =A0uint16_t inuse; > >> =A0 =A0 =A0uint16_t vector; > >> =A0 =A0 =A0void (*handle_output)(VirtIODevice *vdev, VirtQueue *vq); > >> =A0 =A0 =A0VirtIODevice *vdev; > >> @@ -671,6 +671,7 @@ void virtio_save(VirtIODevice *vdev, QEMUFile *f= ) > >> =A0 =A0 =A0 =A0 =A0qemu_put_be32(f, vdev->vq[i].vring.num); > >> =A0 =A0 =A0 =A0 =A0qemu_put_be64(f, vdev->vq[i].pa); > >> =A0 =A0 =A0 =A0 =A0qemu_put_be16s(f, &vdev->vq[i].last_avail_idx); > >> + =A0 =A0 =A0 =A0qemu_put_be16s(f, &vdev->vq[i].inuse); > >> =A0 =A0 =A0 =A0 =A0if (vdev->binding->save_queue) > >> =A0 =A0 =A0 =A0 =A0 =A0 =A0vdev->binding->save_queue(vdev->binding_o= paque, i, f); > >> =A0 =A0 =A0} > >> @@ -711,6 +712,11 @@ int virtio_load(VirtIODevice *vdev, QEMUFile *f= ) > >> =A0 =A0 =A0 =A0 =A0vdev->vq[i].vring.num =3D qemu_get_be32(f); > >> =A0 =A0 =A0 =A0 =A0vdev->vq[i].pa =3D qemu_get_be64(f); > >> =A0 =A0 =A0 =A0 =A0qemu_get_be16s(f, &vdev->vq[i].last_avail_idx); > >> + =A0 =A0 =A0 =A0qemu_get_be16s(f, &vdev->vq[i].inuse); > >> + > >> + =A0 =A0 =A0 =A0/* revert last_avail_idx if there are outstanding e= mulation. */ > >> + =A0 =A0 =A0 =A0vdev->vq[i].last_avail_idx -=3D vdev->vq[i].inuse; > >> + =A0 =A0 =A0 =A0vdev->vq[i].inuse =3D 0; > >> > >> =A0 =A0 =A0 =A0 =A0if (vdev->vq[i].pa) { > >> =A0 =A0 =A0 =A0 =A0 =A0 =A0virtqueue_init(&vdev->vq[i]); > >> -- > >> 1.7.1.2 > >> > >> -- > >> To unsubscribe from this list: send the line "unsubscribe kvm" in > >> the body of a message to majordomo@vger.kernel.org > >> More majordomo info at =A0http://vger.kernel.org/majordomo-info.html > > -- > > To unsubscribe from this list: send the line "unsubscribe kvm" in > > the body of a message to majordomo@vger.kernel.org > > More majordomo info at =A0http://vger.kernel.org/majordomo-info.html > >