From: Ethan Jackson Date: Wed, 29 May 2013 17:20:23 +0000 (-0700) Subject: ofproto-dpif: handle_flow_miss_common() without facets. X-Git-Tag: sliver-openvswitch-1.10.90-3~6^2~200 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=7820e253773f16dc2f31d0dab748cc9c09c69c8f;p=sliver-openvswitch.git ofproto-dpif: handle_flow_miss_common() without facets. handle_flow_miss_common() is intended to be called whether or not a miss needs a facet. Found by inspection. Signed-off-by: Ethan Jackson --- diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index b5472982d..ae59eda02 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -3683,6 +3683,8 @@ handle_flow_miss_without_facet(struct flow_miss *miss, COVERAGE_INC(facet_suppress); + handle_flow_miss_common(rule, packet, &miss->flow); + ofpbuf_use_stub(&odp_actions, op->stub, sizeof op->stub); dpif_flow_stats_extract(&miss->flow, packet, now, &stats);