From patchwork Thu Mar 7 06:07:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wayne Xia X-Patchwork-Id: 225732 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5C2172C0385 for ; Thu, 7 Mar 2013 17:10:48 +1100 (EST) Received: from localhost ([::1]:39159 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDU2Q-0007cE-CL for incoming@patchwork.ozlabs.org; Thu, 07 Mar 2013 01:10:46 -0500 Received: from eggs.gnu.org ([208.118.235.92]:51096) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDU1n-0007Ry-RY for qemu-devel@nongnu.org; Thu, 07 Mar 2013 01:10:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UDU1i-0004La-LC for qemu-devel@nongnu.org; Thu, 07 Mar 2013 01:10:07 -0500 Received: from e28smtp04.in.ibm.com ([122.248.162.4]:36578) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDU1i-0004AM-4J for qemu-devel@nongnu.org; Thu, 07 Mar 2013 01:10:02 -0500 Received: from /spool/local by e28smtp04.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 7 Mar 2013 11:37:05 +0530 Received: from d28dlp02.in.ibm.com (9.184.220.127) by e28smtp04.in.ibm.com (192.168.1.134) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 7 Mar 2013 11:37:02 +0530 Received: from d28relay05.in.ibm.com (d28relay05.in.ibm.com [9.184.220.62]) by d28dlp02.in.ibm.com (Postfix) with ESMTP id A985C3940053 for ; Thu, 7 Mar 2013 11:39:57 +0530 (IST) Received: from d28av03.in.ibm.com (d28av03.in.ibm.com [9.184.220.65]) by d28relay05.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r2769soQ20054224 for ; Thu, 7 Mar 2013 11:39:54 +0530 Received: from d28av03.in.ibm.com (loopback [127.0.0.1]) by d28av03.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r2769rs0030115 for ; Thu, 7 Mar 2013 17:09:56 +1100 Received: from RH63Wenchao (wenchaox.cn.ibm.com [9.115.122.208]) by d28av03.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id r2767TJn021188; Thu, 7 Mar 2013 17:09:48 +1100 From: Wenchao Xia To: qemu-devel@nongnu.org Date: Thu, 7 Mar 2013 14:07:13 +0800 Message-Id: <1362636445-7188-9-git-send-email-xiawenc@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1362636445-7188-1-git-send-email-xiawenc@linux.vnet.ibm.com> References: <1362636445-7188-1-git-send-email-xiawenc@linux.vnet.ibm.com> X-TM-AS-MML: No X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13030706-5564-0000-0000-000006EA578C X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 122.248.162.4 Cc: kwolf@redhat.com, aliguori@us.ibm.com, capitulino@redhat.com, stefanha@gmail.com, armbru@redhat.com, pbonzini@redhat.com, Wenchao Xia Subject: [Qemu-devel] [PATCH V8 08/20] block: add filter for vm snapshot in bdrv_query_snapshot_info_list() X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This patch adds a parameter to tell whether return valid snapshots for whole VM only. Signed-off-by: Wenchao Xia --- block/qapi.c | 39 +++++++++++++++++++++++++++++++++++++-- include/block/qapi.h | 1 + qemu-img.c | 3 ++- 3 files changed, 40 insertions(+), 3 deletions(-) diff --git a/block/qapi.c b/block/qapi.c index b503cfa..a90b4c7 100644 --- a/block/qapi.c +++ b/block/qapi.c @@ -12,11 +12,44 @@ */ #include "block/qapi.h" +#include "block/snapshot.h" #include "block/block_int.h" -/* return 0 on success, and @p_list will be set only on success. */ +/* + * check whether the snapshot is valid for whole vm. + * + * @sn: snapshot info need to be checked. + * @bs: where @sn was found. + * + * return 0 if valid, it means load_vmstate() for it could succeed. + */ +static int snapshot_filter_vm(const QEMUSnapshotInfo *sn, BlockDriverState *bs) +{ + BlockDriverState *bs1 = NULL; + QEMUSnapshotInfo s, *sn_info = &s; + int ret = 0; + + /* Check logic is connected with load_vmstate(): + Only check the devices that can snapshot, other devices that can't + take snapshot, for example, readonly ones, will be ignored in + load_vmstate(). */ + while ((bs1 = bdrv_next(bs1))) { + if (bdrv_can_snapshot(bs1) && bs1 != bs) { + ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str, NULL); + if (ret < 0) { + ret = -1; + break; + } + } + } + return ret; +} + +/* return 0 on success, and @p_list will be set only on success. If + @vm_snapshot is true, only the snapshot valid for whole vm will be got. */ int bdrv_query_snapshot_info_list(BlockDriverState *bs, SnapshotInfoList **p_list, + bool vm_snapshot, Error **errp) { int i, sn_count; @@ -45,7 +78,9 @@ int bdrv_query_snapshot_info_list(BlockDriverState *bs, } for (i = 0; i < sn_count; i++) { - + if (vm_snapshot && snapshot_filter_vm(&sn_tab[i], bs)) { + continue; + } info = g_new0(SnapshotInfo, 1); info->id = g_strdup(sn_tab[i].id_str); info->name = g_strdup(sn_tab[i].name); diff --git a/include/block/qapi.h b/include/block/qapi.h index 030964b..4842c12 100644 --- a/include/block/qapi.h +++ b/include/block/qapi.h @@ -6,6 +6,7 @@ int bdrv_query_snapshot_info_list(BlockDriverState *bs, SnapshotInfoList **p_list, + bool vm_snapshot, Error **errp); void bdrv_collect_image_info(BlockDriverState *bs, ImageInfo *info, diff --git a/qemu-img.c b/qemu-img.c index 32a72f5..7786953 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -1735,7 +1735,8 @@ static ImageInfoList *collect_image_info_list(const char *filename, info = g_new0(ImageInfo, 1); bdrv_collect_image_info(bs, info, filename, fmt); - if (!bdrv_query_snapshot_info_list(bs, &info->snapshots, NULL)) { + if (!bdrv_query_snapshot_info_list(bs, &info->snapshots, + false, NULL)) { info->has_snapshots = true; }