netfilter: flowtable: populate addr_type mask

nf_flow_rule_match() sets control.addr_type in key, so needs to also set
 the corresponding mask.  An exact match is wanted, so mask is all ones.

Fixes: c29f74e0df ("netfilter: nf_flow_table: hardware offload support")
Signed-off-by: Edward Cree <ecree@solarflare.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
Edward Cree 2020-03-19 19:37:21 +00:00 committed by Pablo Neira Ayuso
parent c921ffe853
commit 15ff197237
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@ static int nf_flow_rule_match(struct nf_flow_match *match,
default: default:
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
mask->control.addr_type = 0xffff;
match->dissector.used_keys |= BIT(key->control.addr_type); match->dissector.used_keys |= BIT(key->control.addr_type);
mask->basic.n_proto = 0xffff; mask->basic.n_proto = 0xffff;