From: Ben Pfaff Date: Mon, 6 Jun 2011 21:25:37 +0000 (-0700) Subject: ofp-parse: Fix wildcard bits for dl_dst in flow parsing. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=009853d87ec9ae26edcaa74687a2908a1692b7a1;p=openvswitch ofp-parse: Fix wildcard bits for dl_dst in flow parsing. This fixes a really minor corner case in flow parsing that doesn't make much sense anyway. --- diff --git a/lib/ofp-parse.c b/lib/ofp-parse.c index 52fdbf2f..5e488a6e 100644 --- a/lib/ofp-parse.c +++ b/lib/ofp-parse.c @@ -537,7 +537,7 @@ parse_protocol(const char *name, const struct protocol **p_out) FIELD(F_DL_VLAN, "dl_vlan", 0) \ FIELD(F_DL_VLAN_PCP, "dl_vlan_pcp", 0) \ FIELD(F_DL_SRC, "dl_src", FWW_DL_SRC) \ - FIELD(F_DL_DST, "dl_dst", FWW_DL_DST) \ + FIELD(F_DL_DST, "dl_dst", FWW_DL_DST | FWW_ETH_MCAST) \ FIELD(F_DL_TYPE, "dl_type", FWW_DL_TYPE) \ FIELD(F_NW_SRC, "nw_src", 0) \ FIELD(F_NW_DST, "nw_dst", 0) \