mirror of
https://github.com/torvalds/linux.git
synced 2026-05-21 05:18:45 +02:00
net: prestera: acl: use proper mask for port selector
Adjusted as per packet processor documentation.
This allows to properly match 'indev' for clsact rules.
Fixes: 47327e198d ("net: prestera: acl: migrate to new vTCAM api")
Signed-off-by: Maksym Glubokiy <maksym.glubokiy@plvision.eu>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f08d8c1bb9
commit
1e20904e41
|
|
@ -167,12 +167,12 @@ static int prestera_flower_parse_meta(struct prestera_acl_rule *rule,
|
|||
}
|
||||
port = netdev_priv(ingress_dev);
|
||||
|
||||
mask = htons(0x1FFF);
|
||||
key = htons(port->hw_id);
|
||||
mask = htons(0x1FFF << 3);
|
||||
key = htons(port->hw_id << 3);
|
||||
rule_match_set(r_match->key, SYS_PORT, key);
|
||||
rule_match_set(r_match->mask, SYS_PORT, mask);
|
||||
|
||||
mask = htons(0x1FF);
|
||||
mask = htons(0x3FF);
|
||||
key = htons(port->dev_id);
|
||||
rule_match_set(r_match->key, SYS_DEV, key);
|
||||
rule_match_set(r_match->mask, SYS_DEV, mask);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user