summaryrefslogtreecommitdiff
path: root/ofproto/netflow.c
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2013-06-25 16:55:36 -0700
committerJustin Pettit <jpettit@nicira.com>2013-06-25 21:29:28 -0700
commit7431e17196fdb1c3189d67e3aeed4adeab4cf479 (patch)
tree3aa4f9a498cfdeac26c9d9b664ea4f70a76534e5 /ofproto/netflow.c
parentabcd4402fec44a473a19cc790a9a3f00444a123f (diff)
downloadopenvswitch-7431e17196fdb1c3189d67e3aeed4adeab4cf479.tar.gz
ofproto-dpif: Always un-wildcard 'dl_type'.
We always look at the fragment status and often look at other L3 headers when processing the packet, so just un-wildcard the Ethertype. Signed-off-by: Justin Pettit <jpettit@nicira.com>
Diffstat (limited to 'ofproto/netflow.c')
-rw-r--r--ofproto/netflow.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ofproto/netflow.c b/ofproto/netflow.c
index 2e32f219c..c7eb2b516 100644
--- a/ofproto/netflow.c
+++ b/ofproto/netflow.c
@@ -54,7 +54,6 @@ struct netflow {
void
netflow_mask_wc(struct flow_wildcards *wc)
{
- memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst);