Re: [ovs-dev] [PATCH 1/4] ofproto-dpif: Make initial packet value handling generic.

2013-02-14 Thread Justin Pettit
On Feb 14, 2013, at 11:07 AM, Ben Pfaff wrote: > On Wed, Feb 13, 2013 at 03:31:42PM -0800, Justin Pettit wrote: >> For VLAN splinters, an "initial_tci" value was introduced that is passed >> around during flow processing to be used later for action translation. >> This commit switches to passing

Re: [ovs-dev] [PATCH 1/4] ofproto-dpif: Make initial packet value handling generic.

2013-02-14 Thread Ben Pfaff
On Wed, Feb 13, 2013 at 03:31:42PM -0800, Justin Pettit wrote: > For VLAN splinters, an "initial_tci" value was introduced that is passed > around during flow processing to be used later for action translation. > This commit switches to passing around a struct so that additional > values beyond TCI

[ovs-dev] [PATCH 1/4] ofproto-dpif: Make initial packet value handling generic.

2013-02-13 Thread Justin Pettit
For VLAN splinters, an "initial_tci" value was introduced that is passed around during flow processing to be used later for action translation. This commit switches to passing around a struct so that additional values beyond TCI can be used. A future commit will use this. Signed-off-by: Justin Pe