From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [question] incremental backup a running vm Date: Mon, 26 Jan 2015 10:29:24 +0100 Message-ID: <54C608F4.4020905@redhat.com> References: <201501211832330964659@sangfor.com.cn>, <54BF81F0.9070908@redhat.com>, <20150122232948.GQ12638@tesla.redhat.com> <201501260907583380898@sangfor.com.cn> Mime-Version: 1.0 Content-Type: text/plain; charset=gbk Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: qemu-devel , kvm , Stefan Hajnoczi , Fam Zheng To: Zhang Haoyu , Kashyap Chamarthy Return-path: Received: from mx1.redhat.com ([209.132.183.28]:51149 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752096AbbAZJ3n (ORCPT ); Mon, 26 Jan 2015 04:29:43 -0500 In-Reply-To: <201501260907583380898@sangfor.com.cn> Sender: kvm-owner@vger.kernel.org List-ID: On 26/01/2015 02:07, Zhang Haoyu wrote: > Hi, Kashyap > I've tried =A1=AEdrive_backup=A1=AF via QMP, > but the snapshots were missed to backup to destination, > I think the reason is that backup_run() only copy the > guest data regarding qcow2 image. Yes, that's the case. QEMU cannot still access internal snapshots while the file is open. External snapshots are opened read-only, and can be copied with "cp" while QEMU is running. Paolo