[ovs-dev] [PATCH] odp-execute: Bug Fix - missing break statement for CLONE action

Vishal Deep Ajmera vishal.deep.ajmera at ericsson.com
Thu Nov 9 10:15:31 UTC 2017


Adding the break statement for CLONE action case.

Signed-off-by: Vishal Deep Ajmera <vishal.deep.ajmera at ericsson.com>
---
lib/odp-execute.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/lib/odp-execute.c b/lib/odp-execute.c
index 3011479..2d20cd5 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;



More information about the dev mailing list