From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33030) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V4BO6-0000Nv-JN for qemu-devel@nongnu.org; Tue, 30 Jul 2013 10:59:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V4BNz-0004mv-8e for qemu-devel@nongnu.org; Tue, 30 Jul 2013 10:58:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:30590) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V4BNy-0004mk-W6 for qemu-devel@nongnu.org; Tue, 30 Jul 2013 10:58:51 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6UEwoax019646 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 30 Jul 2013 10:58:50 -0400 Date: Tue, 30 Jul 2013 16:58:48 +0200 From: Stefan Hajnoczi Message-ID: <20130730145848.GE9018@stefanha-thinkpad.redhat.com> References: <1375170777-31457-1-git-send-email-famz@redhat.com> <1375170777-31457-4-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1375170777-31457-4-git-send-email-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH v2 3/7] block: implement reference count for BlockDriverState List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: kwolf@redhat.com, jcody@redhat.com, qemu-devel@nongnu.org On Tue, Jul 30, 2013 at 03:52:53PM +0800, Fam Zheng wrote: > @@ -1518,6 +1519,9 @@ static void bdrv_move_feature_fields(BlockDriverState *bs_dest, > /* dirty bitmap */ > bs_dest->dirty_bitmap = bs_src->dirty_bitmap; > > + /* reference count */ > + bs_dest->refcnt = bs_src->refcnt; > + > /* job */ > bs_dest->in_use = bs_src->in_use; > bs_dest->job = bs_src->job; Not sure this is correct, but then bdrv_swap() is hard to reason about... :) Imagine an emulated storage controller holds a reference to the BlockDriverState. When we create an external snapshot we'll bdrv_swap(old_top, new_top). We must not move new_top's refcount into old_top since the old_top object is still being referenced by the emulated storage controller. When the emulated storage controller does bdrv_unref() we'll hit the recount < 0 assertion and be accessing freed memory. > @@ -4392,6 +4396,24 @@ int64_t bdrv_get_dirty_count(BlockDriverState *bs) > } > } > > +/* Get a reference to bs */ > +void bdrv_ref(BlockDriverState *bs) > +{ > + bs->refcnt++; > +} > + > +/* Release a previously grabbed reference to bs. > + * If after releasing, reference count is zero, the BlockDriverState is > + * deleted. */ > +void bdrv_unref(BlockDriverState *bs) > +{ > + assert(bs->refcnt > 0); > + if (--bs->refcnt == 0) { > + bdrv_close(bs); > + bdrv_delete(bs); bdrv_delete() already calls bdrv_close() internally, no need to call bdrv_close() here.