From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:42195) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gw7uC-0001aO-H5 for qemu-devel@nongnu.org; Tue, 19 Feb 2019 11:06:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gw7uB-0007S2-N4 for qemu-devel@nongnu.org; Tue, 19 Feb 2019 11:06:00 -0500 References: <20190218161822.3573-1-kwolf@redhat.com> <20190218161822.3573-12-kwolf@redhat.com> <3efe273b-16af-4927-b684-57cf71275923@redhat.com> <20190219112308.GI4727@localhost.localdomain> From: Eric Blake Message-ID: Date: Tue, 19 Feb 2019 10:04:54 -0600 MIME-Version: 1.0 In-Reply-To: <20190219112308.GI4727@localhost.localdomain> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 11/12] block: Use normal drain for bdrv_set_aio_context() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-block@nongnu.org, mreitz@redhat.com, stefanha@redhat.com, berrange@redhat.com, pbonzini@redhat.com, qemu-devel@nongnu.org On 2/19/19 5:23 AM, Kevin Wolf wrote: > Am 18.02.2019 um 21:57 hat Eric Blake geschrieben: >> On 2/18/19 10:18 AM, Kevin Wolf wrote: >>> Now that bdrv_set_aio_context() works inside drained sections, it can >>> also use the real drain function instead of open coding something >>> similar. >>> >>> Signed-off-by: Kevin Wolf >>> --- >>> +/* The caller must own the AioContext lock for the old AioContext of bs, but it >>> + * must not own the AioContext lock for new_context. */ >> >> Is this comment still accurate, given >> >>> void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) >>> { >>> - AioContext *ctx = bdrv_get_aio_context(bs); >>> - >>> - if (ctx == new_context) { >>> + if (bdrv_get_aio_context(bs) == new_context) { >>> return; >>> } >> >> the short-circuiting when the old context is the new context? > > Hm, yes, old == new is an exception where you quite obviously can't have > old locked and new unlocked at the same time. > > So is adding this enough? > > (unless new_context is the same as the current context of bs) Works for me. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3226 Virtualization: qemu.org | libvirt.org