Process a recirc action in dpif_execute_helper_cb() by doing precisely nothing.
This is in preparation for allowing execution of recirculation to be handled in ovs-vswtichd in some cases. Signed-off-by: Simon Horman <ho...@verge.net.au> --- v2 * First post --- lib/dpif.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/dpif.c b/lib/dpif.c index a8bd674..c4419ff 100644 --- a/lib/dpif.c +++ b/lib/dpif.c @@ -1126,6 +1126,9 @@ dpif_execute_helper_cb(void *aux_, struct ofpbuf *packet, aux->error = aux->dpif->dpif_class->execute(aux->dpif, &execute); break; + case OVS_ACTION_ATTR_RECIRC: + break; + case OVS_ACTION_ATTR_PUSH_VLAN: case OVS_ACTION_ATTR_POP_VLAN: case OVS_ACTION_ATTR_PUSH_MPLS: @@ -1133,7 +1136,6 @@ dpif_execute_helper_cb(void *aux_, struct ofpbuf *packet, case OVS_ACTION_ATTR_SET: case OVS_ACTION_ATTR_SAMPLE: case OVS_ACTION_ATTR_UNSPEC: - case OVS_ACTION_ATTR_RECIRC: case __OVS_ACTION_ATTR_MAX: OVS_NOT_REACHED(); } -- 1.8.5.2 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev