From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58908) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZDK6-0002sS-JH for qemu-devel@nongnu.org; Tue, 08 Sep 2015 03:28:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZZDK1-0001BY-Ja for qemu-devel@nongnu.org; Tue, 08 Sep 2015 03:28:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51951) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZDK1-0001BD-Dz for qemu-devel@nongnu.org; Tue, 08 Sep 2015 03:28:05 -0400 References: <1441164325-14417-1-git-send-email-jasowang@redhat.com> <1441164325-14417-5-git-send-email-jasowang@redhat.com> <20150902130630.662ae71b.cornelia.huck@de.ibm.com> <55ED3F4F.4060504@redhat.com> <20150907102111.7c2ec0dd.cornelia.huck@de.ibm.com> From: Jason Wang Message-ID: <55EE8DFF.2010206@redhat.com> Date: Tue, 8 Sep 2015 15:27:59 +0800 MIME-Version: 1.0 In-Reply-To: <20150907102111.7c2ec0dd.cornelia.huck@de.ibm.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH V2 4/8] virtio-pci: fix 1.0 virtqueue migration List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cornelia Huck Cc: qemu-devel@nongnu.org, mst@redhat.com On 09/07/2015 04:21 PM, Cornelia Huck wrote: > On Mon, 7 Sep 2015 15:39:59 +0800 > Jason Wang wrote: > >> > On 09/02/2015 07:06 PM, Cornelia Huck wrote: >>> > > On Wed, 2 Sep 2015 11:25:21 +0800 >>> > > Jason Wang wrote: >>>> > >> +static int get_extra_state(QEMUFile *f, void *pv, size_t size) >>>> > >> +{ >>>> > >> + VirtIODevice *vdev = pv; >>>> > >> + BusState *qbus = qdev_get_parent_bus(DEVICE(vdev)); >>>> > >> + VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus); >>>> > >> + int ret = 0; >>>> > >> + >>>> > >> + ret = k->load_extra_state(qbus->parent, f); >>> > > Should we check for ->load_extra_state() and return failure if it does >>> > > not exist? >> > >> > I think checking the existence of has_extra_state() in >> > virtio_extra_state_needed() is enough for this? Or is there anything I miss? > The has_extra_state() callback is called by the sender, not by the > receiver. > > If the other side sent the extra state but we can't handle it, I think > it would be better to fail the migration than to crash. Still broken > code, but probably easier to debug :) > I see so it only happen when transport provides save_extra_state() but not get_extra_sate(). I'm ok to add the check in next version . Thanks