Re: [ovs-dev] [PATCH] datapath-windows: Add define for last module number

2016-09-19 Thread Nithin Raju
Only comment I had was to nuke the OVS_DBG_RESERVED and treat OVS_DBG_LAST itself as the last bit. Basically, we are restricting this to 32 since ŒovsLogLevel¹ is 32 bits. We can probably do: BUILD_ASSERT(OVS_DBG_LAST < 31) BUILD_ASSERT(OVS_DBG_LAST < sizeof ovsLogLevel). Thanks for the cleanup.

Re: [ovs-dev] [PATCH] datapath-windows: Add define for last module number

2016-09-16 Thread Sairam Venugopal
Acked-by: Sairam Venugopal On 9/15/16, 5:46 PM, "Shashank Ram" wrote: >Adds a define for the last defined module number. > >Signed-off-by: Shashank Ram >--- > datapath-windows/ovsext/Debug.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/datapath-windows/ovsext/Debu