Re: [ovs-dev] [PATCH 02/11] ofproto-dpif: Use flow pointer in action execution.

2013-06-12 Thread Ben Pfaff
On Fri, May 31, 2013 at 02:35:12PM +0300, Jarno Rajahalme wrote: > With the recent change in xlate_ctx some of the code became repetitive > in accessing the ctx->xin->flow. This replaces the *ctx argument with > *flow argument for action execution functions that only need to access > ctx->xin->flo

[ovs-dev] [PATCH 02/11] ofproto-dpif: Use flow pointer in action execution.

2013-05-31 Thread Jarno Rajahalme
With the recent change in xlate_ctx some of the code became repetitive in accessing the ctx->xin->flow. This replaces the *ctx argument with *flow argument for action execution functions that only need to access ctx->xin->flow, making the code more readable. Summary:Summary: Signed-off-by: Jarno