From 23bea5ffabea8722d33867ceae4807d5dc65e3bb Mon Sep 17 00:00:00 2001 From: Alin Serdean Date: Wed, 17 May 2017 12:57:01 +0000 Subject: datapath-windows: Fix alignment in actions Found by inspection. Signed-off-by: Alin Gabriel Serdean Signed-off-by: Gurucharan Shetty Acked-by: Anand Kumar --- datapath-windows/ovsext/Actions.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'datapath-windows/ovsext/Actions.c') diff --git a/datapath-windows/ovsext/Actions.c b/datapath-windows/ovsext/Actions.c index e2eae9a88..ebfb8a3e7 100644 --- a/datapath-windows/ovsext/Actions.c +++ b/datapath-windows/ovsext/Actions.c @@ -2035,18 +2035,18 @@ OvsDoExecuteActions(POVS_SWITCH_CONTEXT switchContext, } goto dropit; } else if (oldNbl != ovsFwdCtx.curNbl) { - /* - * OvsIpv4Reassemble consumes the original NBL and creates a - * new one and assigns it to the curNbl of ovsFwdCtx. - */ - OvsInitForwardingCtx(&ovsFwdCtx, - ovsFwdCtx.switchContext, - ovsFwdCtx.curNbl, - ovsFwdCtx.srcVportNo, - ovsFwdCtx.sendFlags, - NET_BUFFER_LIST_SWITCH_FORWARDING_DETAIL(ovsFwdCtx.curNbl), - ovsFwdCtx.completionList, - &ovsFwdCtx.layers, FALSE); + /* + * OvsIpv4Reassemble consumes the original NBL and creates a + * new one and assigns it to the curNbl of ovsFwdCtx. + */ + OvsInitForwardingCtx(&ovsFwdCtx, + ovsFwdCtx.switchContext, + ovsFwdCtx.curNbl, + ovsFwdCtx.srcVportNo, + ovsFwdCtx.sendFlags, + NET_BUFFER_LIST_SWITCH_FORWARDING_DETAIL(ovsFwdCtx.curNbl), + ovsFwdCtx.completionList, + &ovsFwdCtx.layers, FALSE); } break; } -- cgit v1.2.1