Re: [ovs-dev] [PATCH v3 12/13] ofproto: Refactor packet_out handling.

2016-09-14 Thread Jarno Rajahalme
> On Sep 13, 2016, at 4:44 PM, Ben Pfaff wrote: > > On Mon, Sep 12, 2016 at 01:52:42PM -0700, Jarno Rajahalme wrote: >> Refactor handle_packet_out() to prepare for bundle support for packet >> outs in a later patch. >> >> Two new callbacks are introduced in ofproto-provider class: >> ->packet_x

Re: [ovs-dev] [PATCH v3 12/13] ofproto: Refactor packet_out handling.

2016-09-13 Thread Ben Pfaff
On Mon, Sep 12, 2016 at 01:52:42PM -0700, Jarno Rajahalme wrote: > Refactor handle_packet_out() to prepare for bundle support for packet > outs in a later patch. > > Two new callbacks are introduced in ofproto-provider class: > ->packet_xlate() and ->packet_execute(). ->packet_xlate() translates

[ovs-dev] [PATCH v3 12/13] ofproto: Refactor packet_out handling.

2016-09-12 Thread Jarno Rajahalme
Refactor handle_packet_out() to prepare for bundle support for packet outs in a later patch. Two new callbacks are introduced in ofproto-provider class: ->packet_xlate() and ->packet_execute(). ->packet_xlate() translates the packet using the flow and actions provided by the caller, but defers al