Re: [ovs-dev] [PATCH v4 2/2] chassis.c: Return chassis record whenever available in chassis_run().

2019-04-16 Thread Ben Pfaff
On Tue, Apr 16, 2019 at 11:42:04AM -0700, Han Zhou wrote: > From: Han Zhou > > The ovn-controller main loop relies on the return value of chassis_run(). > When ovnsb_idl_txn is NULL (i.e. there is a pending transaction for SB), > chasssis_run() returns NULL, which blocks functions to be executed

[ovs-dev] [PATCH v4 2/2] chassis.c: Return chassis record whenever available in chassis_run().

2019-04-16 Thread Han Zhou
From: Han Zhou The ovn-controller main loop relies on the return value of chassis_run(). When ovnsb_idl_txn is NULL (i.e. there is a pending transaction for SB), chasssis_run() returns NULL, which blocks functions to be executed in the main loop unnecessarily. This patch updates chassis_run() so