Re: [ovs-dev] [PATCH ovn 1/2] Refactor lflow functions to take one context argument - lflow_ctx.

2020-01-24 Thread Numan Siddique
On Sat, Jan 11, 2020 at 11:02 PM Han Zhou wrote: > > On Fri, Jan 10, 2020 at 11:26 AM wrote: > > > > From: Numan Siddique > > > > Presently most of the lflow_*() functions called from ovn-controller.c > > takes lots of arguments. This patch adds 'struct lflow_ctx' to simplify > > the code a bit.

Re: [ovs-dev] [PATCH ovn 1/2] Refactor lflow functions to take one context argument - lflow_ctx.

2020-01-11 Thread Han Zhou
On Fri, Jan 10, 2020 at 11:26 AM wrote: > > From: Numan Siddique > > Presently most of the lflow_*() functions called from ovn-controller.c > takes lots of arguments. This patch adds 'struct lflow_ctx' to simplify > the code a bit. This also reduces some code in ovn-controller.c and > improves re

[ovs-dev] [PATCH ovn 1/2] Refactor lflow functions to take one context argument - lflow_ctx.

2020-01-10 Thread numans
From: Numan Siddique Presently most of the lflow_*() functions called from ovn-controller.c takes lots of arguments. This patch adds 'struct lflow_ctx' to simplify the code a bit. This also reduces some code in ovn-controller.c and improves readability to some degree. No functional changes are i