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

Vishal Deep Ajmera vishal.deep.ajmera at ericsson.com
Mon Nov 20 06:10:20 UTC 2017


Hi,

Do any one sees issues with this patch ? If let loose, it may create issues once we have implementation of METER.

Warm Regards,
Vishal

From: Vishal Deep Ajmera
Sent: Thursday, November 09, 2017 3:45 PM
To: dev at openvswitch.org
Subject: [PATCH] odp-execute: Bug Fix - missing break statement for CLONE action

Adding the break statement for CLONE action case.

Signed-off-by: Vishal Deep Ajmera <vishal.deep.ajmera at ericsson.com<mailto: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