[Qemu-devel] [PATCH 1/5] blockjob: fix dead pointer in txn list

2016-10-20 Thread John Snow
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

Re: [Qemu-devel] [PATCH 1/5] blockjob: fix dead pointer in txn list

2016-09-29 Thread Eric Blake
On 08/08/2016 02:09 PM, 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. > >

[Qemu-devel] [PATCH 1/5] blockjob: fix dead pointer in txn list

2016-08-08 Thread John Snow
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