Re: [ovs-dev] [PATCH] ovsdb-idl: Plug hole in state machine.

2011-06-21 Thread Ben Pfaff
On Tue, Jun 21, 2011 at 01:01:39PM -0700, Andrew Evans wrote: > On Mon, 2011-06-20 at 16:17 -0700, Ben Pfaff wrote: > > The state machine didn't have a proper state for "not yet committed or > > aborted", which meant that destroying an ovsdb_idl_txn without committing > > or aborting it caused a se

Re: [ovs-dev] [PATCH] ovsdb-idl: Plug hole in state machine.

2011-06-21 Thread Andrew Evans
On Mon, 2011-06-20 at 16:17 -0700, Ben Pfaff wrote: > The state machine didn't have a proper state for "not yet committed or > aborted", which meant that destroying an ovsdb_idl_txn without committing > or aborting it caused a segfault. This fixes the problem by adding a new > state TXN_UNCOMMITTE

[ovs-dev] [PATCH] ovsdb-idl: Plug hole in state machine.

2011-06-20 Thread Ben Pfaff
The state machine didn't have a proper state for "not yet committed or aborted", which meant that destroying an ovsdb_idl_txn without committing or aborting it caused a segfault. This fixes the problem by adding a new state TXN_UNCOMMITTED to the state machine. This is related to commit 79554078d