Re: [ovs-dev] [PATCH v3 01/41] ofproto: Use ofp14_flow_monitor_flags internally

2014-06-24 Thread Simon Horman
On Mon, Jun 23, 2014 at 03:11:57PM -0700, Ben Pfaff wrote: > On Mon, Jun 16, 2014 at 11:29:21AM +0900, Simon Horman wrote: > > Use enum ofp14_flow_monitor_flags in place of enum nx_flow_monitor_flags in > > struct ofputil_flow_monitor_request and struct rule, translating between > > the two enumera

Re: [ovs-dev] [PATCH v3 01/41] ofproto: Use ofp14_flow_monitor_flags internally

2014-06-23 Thread Ben Pfaff
On Mon, Jun 16, 2014 at 11:29:21AM +0900, Simon Horman wrote: > Use enum ofp14_flow_monitor_flags in place of enum nx_flow_monitor_flags in > struct ofputil_flow_monitor_request and struct rule, translating between > the two enumerations as necessary. > > The motivation for this patch is to move t

[ovs-dev] [PATCH v3 01/41] ofproto: Use ofp14_flow_monitor_flags internally

2014-06-15 Thread Simon Horman
Use enum ofp14_flow_monitor_flags in place of enum nx_flow_monitor_flags in struct ofputil_flow_monitor_request and struct rule, translating between the two enumerations as necessary. The motivation for this patch is to move towards supporting OpenFlow1.4 flow monitor requests. Signed-off-by: Sim