summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext/Actions.c
diff options
context:
space:
mode:
authorAlin Serdean <aserdean@cloudbasesolutions.com>2017-05-17 12:57:01 +0000
committerGurucharan Shetty <guru@ovn.org>2017-05-23 15:25:19 -0700
commit23bea5ffabea8722d33867ceae4807d5dc65e3bb (patch)
treecb9db8a10fbc2da2c7187be9c9ac8fb2e149060f /datapath-windows/ovsext/Actions.c
parent1b4f56e088f27768655dd7550445562067a9bd57 (diff)
downloadopenvswitch-23bea5ffabea8722d33867ceae4807d5dc65e3bb.tar.gz
datapath-windows: Fix alignment in actions
Found by inspection. Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com> Signed-off-by: Gurucharan Shetty <guru@ovn.org> Acked-by: Anand Kumar <kumaranand at vmware.com>
Diffstat (limited to 'datapath-windows/ovsext/Actions.c')
-rw-r--r--datapath-windows/ovsext/Actions.c24
1 files changed, 12 insertions, 12 deletions
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;
}