X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fmatch.c;fp=lib%2Fmatch.c;h=29ee1535e0cbde3e0d66fd146f284bbe95e32b58;hb=72e8bf28bb38e8816435c64859fb350215b6a9e6;hp=81b717348b5305f9703920ebb06235fca14a2ce7;hpb=24f974c481bc5230552b23d96312f645f7533cd3;p=openvswitch diff --git a/lib/match.c b/lib/match.c index 81b71734..29ee1535 100644 --- a/lib/match.c +++ b/lib/match.c @@ -125,6 +125,7 @@ match_init_exact(struct match *match, const struct flow *flow) match->flow = *flow; match->flow.skb_priority = 0; + match->flow.skb_mark = 0; memset(&match->flow.tunnel, 0, sizeof match->flow.tunnel); match->flow.tunnel.tun_id = tun_id; flow_wildcards_init_exact(&match->wc); @@ -655,7 +656,7 @@ match_format(const struct match *match, struct ds *s, unsigned int priority) int i; - BUILD_ASSERT_DECL(FLOW_WC_SEQ == 17); + BUILD_ASSERT_DECL(FLOW_WC_SEQ == 18); if (priority != OFP_DEFAULT_PRIORITY) { ds_put_format(s, "priority=%u,", priority);