From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36970) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c3wS0-0004Gj-SF for qemu-devel@nongnu.org; Mon, 07 Nov 2016 21:47:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c3wS0-0005fL-6g for qemu-devel@nongnu.org; Mon, 07 Nov 2016 21:47:52 -0500 Date: Mon, 7 Nov 2016 21:47:44 -0500 From: Jeff Cody Message-ID: <20161108024744.GC23932@localhost.localdomain> References: <1478109056-25198-1-git-send-email-jsnow@redhat.com> <1478109056-25198-2-git-send-email-jsnow@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1478109056-25198-2-git-send-email-jsnow@redhat.com> Subject: Re: [Qemu-devel] [PATCH v3 1/6] blockjob: fix dead pointer in txn list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: John Snow Cc: qemu-block@nongnu.org, kwolf@redhat.com, vsementsov@virtuozzo.com, stefanha@redhat.com, pbonzini@redhat.com, qemu-devel@nongnu.org On Wed, Nov 02, 2016 at 01:50:51PM -0400, John Snow wrote: > From: Vladimir Sementsov-Ogievskiy > > Though it is not intended to be reached through normal circumstances, > if we do not gracefully deconstruct the transaction QLIST, we may wind > up with stale pointers in the list. > > The rest of this series attempts to address the underlying issues, > but this should fix list inconsistencies. > > Signed-off-by: Vladimir Sementsov-Ogievskiy > Tested-by: John Snow > Reviewed-by: John Snow > [Rewrote commit message. --js] > Signed-off-by: John Snow > Reviewed-by: Eric Blake > Reviewed-by: Kevin Wolf > > Signed-off-by: John Snow > --- > blockjob.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/blockjob.c b/blockjob.c > index 4aa14a4..4d0ef53 100644 > --- a/blockjob.c > +++ b/blockjob.c > @@ -256,6 +256,7 @@ static void block_job_completed_single(BlockJob *job) > } > > if (job->txn) { > + QLIST_REMOVE(job, txn_list); > block_job_txn_unref(job->txn); > } > block_job_unref(job); > -- > 2.7.4 > Reviewed-by: Jeff Cody