From patchwork Fri Jun 29 08:03:13 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denis Plotnikov X-Patchwork-Id: 936684 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=2001:4830:134:3::11; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=virtuozzo.com Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41H8Sy3ZFfz9s1R for ; Fri, 29 Jun 2018 18:09:53 +1000 (AEST) Received: from localhost ([::1]:40528 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fYoTU-0003H5-43 for incoming@patchwork.ozlabs.org; Fri, 29 Jun 2018 04:09:48 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53452) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fYoNT-0007JK-SS for qemu-devel@nongnu.org; Fri, 29 Jun 2018 04:03:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fYoNO-0006nZ-83 for qemu-devel@nongnu.org; Fri, 29 Jun 2018 04:03:35 -0400 Received: from relay.sw.ru ([185.231.240.75]:58248) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fYoNN-0006kp-WC for qemu-devel@nongnu.org; Fri, 29 Jun 2018 04:03:30 -0400 Received: from vz-out.virtuozzo.com ([185.231.240.5] helo=dptest2.qa.sw.ru) by relay.sw.ru with esmtp (Exim 4.90_1) (envelope-from ) id 1fYoNK-0000K4-Ep; Fri, 29 Jun 2018 11:03:26 +0300 From: Denis Plotnikov To: dgilbert@redhat.com, quintela@redhat.com, pbonzini@redhat.com Date: Fri, 29 Jun 2018 11:03:13 +0300 Message-Id: <20180629080320.320144-1-dplotnikov@virtuozzo.com> X-Mailer: git-send-email 2.17.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 185.231.240.75 Subject: [Qemu-devel] [PATCH v0 0/7] Background snapshots X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" The patch set adds the ability to make external snapshots while VM is running. The workflow to make a snapshot is the following: 1. Pause the vm 2. Make a snapshot of block devices using the scheme of your choice 3. Turn on background-snapshot migration capability 4. Start the migration using the destination (migration stream) of your choice. The migration will resume the vm execution by itself when it has the devices' states saved and is ready to start ram writing to the migration stream. 5. Listen to the migration finish event The feature relies on KVM unapplied ability to report the faulting address. Please find the KVM patch snippet to make the patchset work below: +++ b/arch/x86/kvm/vmx.c @@ -XXXX,X +XXXX,XX @@ static int handle_ept_violation(struct kvm_vcpu *vcpu) vcpu->arch.exit_qualification = exit_qualification; - return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); + r = kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); + if (r == -EFAULT) { + unsigned long hva = kvm_vcpu_gfn_to_hva(vcpu, gpa >> PAGE_SHIFT); + + vcpu->run->exit_reason = KVM_EXIT_FAIL_MEM_ACCESS; + vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION; + vcpu->run->fail_mem_access.hva = hva | (gpa & (PAGE_SIZE-1)); + r = 0; + + } + return r; The patch to KVM can be sent if the patch set approved Denis Plotnikov (7): migration: add background snapshot capability bitops: add some atomic versions of bitmap operations threads: add infrastructure to process sigsegv migration: add background snapshot infrastructure kvm: add failed memeory access exit reason kvm: add vCPU failed memeory access processing migration: add background snapshotting include/exec/ram_addr.h | 7 + include/exec/ramlist.h | 4 +- include/qemu/bitops.h | 24 +++ include/qemu/thread.h | 5 + linux-headers/linux/kvm.h | 5 + migration/migration.c | 141 +++++++++++++++- migration/migration.h | 1 + migration/ram.c | 333 ++++++++++++++++++++++++++++++++++++-- migration/ram.h | 11 +- migration/savevm.c | 91 ++++++----- migration/savevm.h | 2 + qapi/migration.json | 6 +- target/i386/kvm.c | 18 +++ util/qemu-thread-posix.c | 50 ++++++ 14 files changed, 635 insertions(+), 63 deletions(-)