From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41052) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boSZQ-0005sc-2q for qemu-devel@nongnu.org; Mon, 26 Sep 2016 05:51:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1boSZK-0002Ju-4m for qemu-devel@nongnu.org; Mon, 26 Sep 2016 05:51:31 -0400 Received: from mail.ispras.ru ([83.149.199.45]:57460) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boSZJ-0002HE-Tf for qemu-devel@nongnu.org; Mon, 26 Sep 2016 05:51:26 -0400 From: "Pavel Dovgalyuk" References: <20160926080757.6992.74311.stgit@PASHA-ISP> <20160926080838.6992.95614.stgit@PASHA-ISP> <20160926092346.GE6093@noname.str.redhat.com> In-Reply-To: <20160926092346.GE6093@noname.str.redhat.com> Date: Mon, 26 Sep 2016 12:51:11 +0300 Message-ID: <002001d217db$845fc030$8d1f4090$@ru> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Language: ru Subject: Re: [Qemu-devel] [PATCH v5 7/9] block: don't make snapshots for filters List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: 'Kevin Wolf' , 'Pavel Dovgalyuk' Cc: qemu-devel@nongnu.org, peter.maydell@linaro.org, quintela@redhat.com, jasowang@redhat.com, mst@redhat.com, pbonzini@redhat.com > From: Kevin Wolf [mailto:kwolf@redhat.com] > Am 26.09.2016 um 10:08 hat Pavel Dovgalyuk geschrieben: > > This patch disables snapshotting for block driver filters. > > It is needed, because snapshots should be created > > in underlying disk images, not in filters itself. > > > > Signed-off-by: Pavel Dovgalyuk > > But that's exactly what the existing code implements? If a driver > doesn't provide .bdrv_snapshot_goto, the request is redirected to > bs->file. > > > block/snapshot.c | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/block/snapshot.c b/block/snapshot.c > > index bf5c2ca..8998b8b 100644 > > --- a/block/snapshot.c > > +++ b/block/snapshot.c > > @@ -184,6 +184,9 @@ int bdrv_snapshot_goto(BlockDriverState *bs, > > if (!drv) { > > return -ENOMEDIUM; > > } > > + if (drv->is_filter) { > > + return 0; > > + } > > This, on the other hand, doesn't redirect the request, but silently > ignores it. That is, loading the snapshot will apparently succeed, but > it wouldn't actually load anything and the disk would stay in its > current state. In my use case bdrv_all_goto_snapshot iterates all block drivers, including filters and disk images. Therefore skipping goto for images is ok. Maybe I should move this check to bdrv_can_snapshot? > > > if (drv->bdrv_snapshot_goto) { > > return drv->bdrv_snapshot_goto(bs, snapshot_id); > > } Pavel Dovgalyuk