Re: [ovs-dev] [PATCH 1/2] db-ctl-base: remove the recurse member from struct cmd_show_table

2015-07-23 Thread Andy Zhou
On Tue, Jul 21, 2015 at 11:41 AM, Ben Pfaff wrote: > On Fri, Jul 17, 2015 at 05:12:44PM -0700, Andy Zhou wrote: >> The 'recurse' is used during run time to suppress duplicated prints. >> It is not essential to describe how show command should work. >> >> This patch remove the 'recurse' member. Dup

Re: [ovs-dev] [PATCH 1/2] db-ctl-base: remove the recurse member from struct cmd_show_table

2015-07-21 Thread Ben Pfaff
On Fri, Jul 17, 2015 at 05:12:44PM -0700, Andy Zhou wrote: > The 'recurse' is used during run time to suppress duplicated prints. > It is not essential to describe how show command should work. > > This patch remove the 'recurse' member. Duplicated prints is now > suppressed by maintaining an 'sse

[ovs-dev] [PATCH 1/2] db-ctl-base: remove the recurse member from struct cmd_show_table

2015-07-17 Thread Andy Zhou
The 'recurse' is used during run time to suppress duplicated prints. It is not essential to describe how show command should work. This patch remove the 'recurse' member. Duplicated prints is now suppressed by maintaining an 'sset' of tables that have been printed at run time. Signed-off-by: Andy