summaryrefslogtreecommitdiff
path: root/lib/odp-execute.c
diff options
context:
space:
mode:
authorVishal Deep Ajmera <vishal.deep.ajmera@ericsson.com>2017-11-09 10:15:31 +0000
committerBen Pfaff <blp@ovn.org>2017-11-20 08:56:17 -0800
commit760ba8624974a17ceb0a9be10451da02f9d57038 (patch)
tree1fc424d9771bbe43f0a72bc0c030a3359141e1c4 /lib/odp-execute.c
parent52f793b8d8d806f3c84b775b62778c6429162f41 (diff)
downloadopenvswitch-760ba8624974a17ceb0a9be10451da02f9d57038.tar.gz
odp-execute: Add missing break statement for CLONE action.
This does not fix any existing bug but it makes the code less hazardous for future updates. Signed-off-by: Vishal Deep Ajmera <vishal.deep.ajmera@ericsson.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'lib/odp-execute.c')
-rw-r--r--lib/odp-execute.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/odp-execute.c b/lib/odp-execute.c
index 301147955..2d20cd57f 100644
--- a/lib/odp-execute.c
+++ b/lib/odp-execute.c
@@ -800,6 +800,7 @@ odp_execute_actions(void *dp, struct dp_packet_batch *batch, bool steal,
* stolen them. */
return;
}
+ break;
case OVS_ACTION_ATTR_METER:
/* Not implemented yet. */
break;