From 760ba8624974a17ceb0a9be10451da02f9d57038 Mon Sep 17 00:00:00 2001 From: Vishal Deep Ajmera Date: Thu, 9 Nov 2017 10:15:31 +0000 Subject: 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 Signed-off-by: Ben Pfaff --- lib/odp-execute.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/odp-execute.c') 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; -- cgit v1.2.1