This wasn't used intentionally anywhere, but some code was turning it on
accidentally (because it was part of FWW_ALL) and other code was not, which
caused confusion. In particular, the NXM code turned it on by default
and the OpenFlow 1.0 code did not, which caused flow stat requests to
return different results depending on format. Deleting it fixes the bug.
Reported-by: Natasha Gude <natasha@nicira.com>
CC: Natasha Gude <natasha@nicira.com>
/* No OFPFW_* bits, but they do have corresponding OVSFW_* bits. */
#define FWW_TUN_ID ((OVS_FORCE flow_wildcards_t) (1 << 8))
/* No corresponding OFPFW_* or OVSFW_* bits. */
-#define FWW_VLAN_TCI ((OVS_FORCE flow_wildcards_t) (1 << 9)
-#define FWW_ETH_MCAST ((OVS_FORCE flow_wildcards_t) (1 << 10))
+#define FWW_ETH_MCAST ((OVS_FORCE flow_wildcards_t) (1 << 9))
/* multicast bit only */
-#define FWW_ALL ((OVS_FORCE flow_wildcards_t) (((1 << 11)) - 1))
+#define FWW_ALL ((OVS_FORCE flow_wildcards_t) (((1 << 10)) - 1))
/* Information on wildcards for a flow, as a supplement to "struct flow".
*