Re: [ovs-dev] [PATCH v2 7/7] flow: Add struct flowmap.

2015-08-07 Thread Jarno Rajahalme
> On Aug 6, 2015, at 5:39 PM, Jarno Rajahalme wrote: > >> On Aug 6, 2015, at 16:29, Jesse Gross wrote: > >> >>> On Thu, Aug 6, 2015 at 4:17 PM, Jarno Rajahalme >>> wrote: >>> Struct miniflow is now sometimes used just as a map. Define a new >>> struct flowmap for that purpose. The flowmap

Re: [ovs-dev] [PATCH v2 7/7] flow: Add struct flowmap.

2015-08-06 Thread Jarno Rajahalme
> On Aug 6, 2015, at 16:29, Jesse Gross wrote: > >> On Thu, Aug 6, 2015 at 4:17 PM, Jarno Rajahalme >> wrote: >> Struct miniflow is now sometimes used just as a map. Define a new >> struct flowmap for that purpose. The flowmap is defined as an array of >> maps, and it is automatically sized

Re: [ovs-dev] [PATCH v2 7/7] flow: Add struct flowmap.

2015-08-06 Thread Jesse Gross
On Thu, Aug 6, 2015 at 4:17 PM, Jarno Rajahalme wrote: > Struct miniflow is now sometimes used just as a map. Define a new > struct flowmap for that purpose. The flowmap is defined as an array of > maps, and it is automatically sized according to the size of struct > flow, so it will be easier t

[ovs-dev] [PATCH v2 7/7] flow: Add struct flowmap.

2015-08-06 Thread Jarno Rajahalme
Struct miniflow is now sometimes used just as a map. Define a new struct flowmap for that purpose. The flowmap is defined as an array of maps, and it is automatically sized according to the size of struct flow, so it will be easier to maintain in the future. It would have been tempting to use th