[{"id":1776243,"web_url":"http://patchwork.ozlabs.org/comment/1776243/","msgid":"<20170927105126.GB5453@work-vm>","list_archive_url":null,"date":"2017-09-27T10:51:26","subject":"Re: [Qemu-devel] [PATCH v2 0/6] migration: let pre_save fail","submitter":{"id":48102,"url":"http://patchwork.ozlabs.org/api/people/48102/","name":"Dr. David Alan Gilbert","email":"dgilbert@redhat.com"},"content":"* Dr. David Alan Gilbert (git) (dgilbert@redhat.com) wrote:\n> From: \"Dr. David Alan Gilbert\" <dgilbert@redhat.com>\n> \n> At the moment the pre-save method on VMStateDescription returns void\n> which means there's no sane way of a pre_save routine failing.  There\n> are quite a few pre_save's that abort or do other nasty things, and it\n> would be better if they could fail cleanly.\n> \n> This patch series doesn't fix any of those pre_save's - it just changes\n> pre_save to return an error value and routes that back up so the\n> migration fails.  I'll leave that up to the individual device owners.\n> \n> There are a bunch of corner cases that I've not fixed yet;  these are\n> mostly places that call vmstate_save_state which have been partially\n> converted to modern migration code;  often the functions they're called\n> from return void as well - they can get fixed later.\n> \n> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>\n\nQueued.\n\n> \n> v2\n>   test: Split assert/side effects [Fam]\n>   new patch 3: Changed to also check the return of the ->put methods\n>     that should have been checked previously. [Peter]\n> \n> Dr. David Alan Gilbert (6):\n>   migration: pre_save return int\n>   migration: check pre_save return in vmstate_save_state\n>   migration: Check field save returns\n>   migration: wire vmstate_save_state errors up to\n>     vmstate_subsection_save\n>   migration: Route errors up through vmstate_save\n>   migration: Route more error paths\n> \n>  docs/devel/migration.txt       |  2 +-\n>  hw/arm/pxa2xx.c                |  4 +++-\n>  hw/arm/strongarm.c             |  4 +++-\n>  hw/audio/wm8750.c              |  4 +++-\n>  hw/block/fdc.c                 |  4 +++-\n>  hw/block/m25p80.c              |  4 +++-\n>  hw/block/nand.c                |  4 +++-\n>  hw/block/onenand.c             |  4 +++-\n>  hw/char/serial.c               |  4 +++-\n>  hw/display/qxl.c               |  4 +++-\n>  hw/display/virtio-gpu.c        |  4 +---\n>  hw/i2c/core.c                  |  4 +++-\n>  hw/i386/kvm/clock.c            |  4 +++-\n>  hw/ide/core.c                  |  4 +++-\n>  hw/ide/pci.c                   |  4 +++-\n>  hw/input/ps2.c                 |  8 ++++++--\n>  hw/input/tsc210x.c             |  4 +++-\n>  hw/intc/apic_common.c          |  4 +++-\n>  hw/intc/arm_gic_common.c       |  4 +++-\n>  hw/intc/arm_gicv3_common.c     |  4 +++-\n>  hw/intc/arm_gicv3_its_common.c |  4 +++-\n>  hw/intc/i8259_common.c         |  4 +++-\n>  hw/intc/ioapic_common.c        |  4 +++-\n>  hw/intc/s390_flic_kvm.c        |  6 ++++--\n>  hw/intc/xics.c                 |  8 ++++++--\n>  hw/net/e1000.c                 |  4 +++-\n>  hw/net/e1000e.c                |  4 +++-\n>  hw/net/rtl8139.c               |  4 +++-\n>  hw/net/virtio-net.c            | 16 ++++++++++++----\n>  hw/net/vmxnet3.c               |  4 +++-\n>  hw/pci-host/piix.c             |  4 +++-\n>  hw/ppc/ppc.c                   |  4 +++-\n>  hw/ppc/spapr_iommu.c           |  4 +++-\n>  hw/ppc/spapr_pci.c             |  6 ++++--\n>  hw/s390x/css.c                 | 10 +++++++---\n>  hw/s390x/virtio-ccw.c          |  4 +++-\n>  hw/scsi/lsi53c895a.c           |  4 +++-\n>  hw/scsi/vmw_pvscsi.c           |  4 +++-\n>  hw/timer/cadence_ttc.c         |  4 +++-\n>  hw/timer/hpet.c                |  4 +++-\n>  hw/timer/i8254_common.c        |  4 +++-\n>  hw/timer/mc146818rtc.c         |  4 +++-\n>  hw/timer/pl031.c               |  4 +++-\n>  hw/timer/twl92230.c            |  4 +++-\n>  hw/usb/dev-smartcard-reader.c  |  4 +++-\n>  hw/usb/hcd-ehci.c              |  4 +++-\n>  hw/usb/redirect.c              |  4 +++-\n>  hw/virtio/vhost-vsock.c        |  4 +++-\n>  hw/virtio/virtio.c             | 13 +++++++------\n>  include/hw/virtio/virtio.h     |  2 +-\n>  include/migration/vmstate.h    |  6 +++---\n>  migration/colo-comm.c          |  4 +++-\n>  migration/global_state.c       |  4 +++-\n>  migration/savevm.c             | 23 ++++++++++++++++------\n>  migration/trace-events         |  1 +\n>  migration/vmstate-types.c      | 11 ++++++++---\n>  migration/vmstate.c            | 43 +++++++++++++++++++++++++++++++-----------\n>  replay/replay-snapshot.c       |  4 +++-\n>  slirp/slirp.c                  |  8 ++++++--\n>  target/arm/machine.c           |  4 +++-\n>  target/i386/machine.c          |  7 +++++--\n>  target/ppc/machine.c           |  4 +++-\n>  target/s390x/machine.c         |  4 +++-\n>  target/sparc/machine.c         |  4 +++-\n>  tests/test-vmstate.c           | 13 +++++++++----\n>  65 files changed, 271 insertions(+), 104 deletions(-)\n> \n> -- \n> 2.13.5\n> \n> \n--\nDr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org;\n\tspf=pass (mailfrom) smtp.mailfrom=nongnu.org\n\t(client-ip=2001:4830:134:3::11; helo=lists.gnu.org;\n\tenvelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n\treceiver=<UNKNOWN>)","ext-mx08.extmail.prod.ext.phx2.redhat.com;\n\tdmarc=none (p=none dis=none) header.from=redhat.com","ext-mx08.extmail.prod.ext.phx2.redhat.com;\n\tspf=fail smtp.mailfrom=dgilbert@redhat.com"],"Received":["from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11])\n\t(using TLSv1 with cipher AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3y2F524qsqz9tXT\n\tfor <incoming@patchwork.ozlabs.org>;\n\tWed, 27 Sep 2017 20:52:05 +1000 (AEST)","from localhost ([::1]:53969 helo=lists.gnu.org)\n\tby lists.gnu.org with esmtp (Exim 4.71) (envelope-from\n\t<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>)\n\tid 1dx9wg-0000gK-Vc\n\tfor incoming@patchwork.ozlabs.org; Wed, 27 Sep 2017 06:52:02 -0400","from eggs.gnu.org ([2001:4830:134:3::10]:47638)\n\tby lists.gnu.org with esmtp (Exim 4.71)\n\t(envelope-from <dgilbert@redhat.com>) id 1dx9wL-0000dy-5V\n\tfor qemu-devel@nongnu.org; Wed, 27 Sep 2017 06:51:42 -0400","from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)\n\t(envelope-from <dgilbert@redhat.com>) id 1dx9wH-0007As-6X\n\tfor qemu-devel@nongnu.org; Wed, 27 Sep 2017 06:51:41 -0400","from mx1.redhat.com ([209.132.183.28]:33979)\n\tby eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32)\n\t(Exim 4.71) (envelope-from <dgilbert@redhat.com>) id 1dx9wG-0007A3-Tu\n\tfor qemu-devel@nongnu.org; Wed, 27 Sep 2017 06:51:37 -0400","from smtp.corp.redhat.com\n\t(int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14])\n\t(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby mx1.redhat.com (Postfix) with ESMTPS id 57CF9C058EC2;\n\tWed, 27 Sep 2017 10:51:35 +0000 (UTC)","from work-vm (ovpn-116-234.ams2.redhat.com [10.36.116.234])\n\tby smtp.corp.redhat.com (Postfix) with ESMTPS id 47BA07E098;\n\tWed, 27 Sep 2017 10:51:29 +0000 (UTC)"],"DMARC-Filter":"OpenDMARC Filter v1.3.2 mx1.redhat.com 57CF9C058EC2","Date":"Wed, 27 Sep 2017 11:51:26 +0100","From":"\"Dr. David Alan Gilbert\" <dgilbert@redhat.com>","To":"qemu-devel@nongnu.org, quintela@redhat.com, peterx@redhat.com,\n\tfamz@redhat.com","Message-ID":"<20170927105126.GB5453@work-vm>","References":"<20170925112917.21340-1-dgilbert@redhat.com>","MIME-Version":"1.0","Content-Type":"text/plain; charset=us-ascii","Content-Disposition":"inline","In-Reply-To":"<20170925112917.21340-1-dgilbert@redhat.com>","User-Agent":"Mutt/1.9.0 (2017-09-02)","X-Scanned-By":"MIMEDefang 2.79 on 10.5.11.14","X-Greylist":"Sender IP whitelisted, not delayed by milter-greylist-4.5.16\n\t(mx1.redhat.com [10.5.110.32]);\n\tWed, 27 Sep 2017 10:51:35 +0000 (UTC)","X-detected-operating-system":"by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic]\n\t[fuzzy]","X-Received-From":"209.132.183.28","Subject":"Re: [Qemu-devel] [PATCH v2 0/6] migration: let pre_save fail","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"<qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n\t<mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<http://lists.nongnu.org/archive/html/qemu-devel/>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n\t<mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Cc":"peter.maydell@linaro.org, cohuck@redhat.com, rth@twiddle.net","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"\"Qemu-devel\"\n\t<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>"}}]