Commit aaab0834 authored by Jianbo Liu's avatar Jianbo Liu Committed by David S. Miller

net/sched: flower: Add support for matching on vlan ethertype

As flow dissector stores vlan ethertype, tc flower now can match on that.
It is to make preparation for supporting QinQ.
Signed-off-by: default avatarJianbo Liu <jianbol@mellanox.com>
Acked-by: default avatarJiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2064c3d4
...@@ -500,6 +500,7 @@ static int fl_set_key_mpls(struct nlattr **tb, ...@@ -500,6 +500,7 @@ static int fl_set_key_mpls(struct nlattr **tb,
} }
static void fl_set_key_vlan(struct nlattr **tb, static void fl_set_key_vlan(struct nlattr **tb,
__be16 ethertype,
struct flow_dissector_key_vlan *key_val, struct flow_dissector_key_vlan *key_val,
struct flow_dissector_key_vlan *key_mask) struct flow_dissector_key_vlan *key_mask)
{ {
...@@ -516,6 +517,8 @@ static void fl_set_key_vlan(struct nlattr **tb, ...@@ -516,6 +517,8 @@ static void fl_set_key_vlan(struct nlattr **tb,
VLAN_PRIORITY_MASK; VLAN_PRIORITY_MASK;
key_mask->vlan_priority = VLAN_PRIORITY_MASK; key_mask->vlan_priority = VLAN_PRIORITY_MASK;
} }
key_val->vlan_tpid = ethertype;
key_mask->vlan_tpid = cpu_to_be16(~0);
} }
static void fl_set_key_flag(u32 flower_key, u32 flower_mask, static void fl_set_key_flag(u32 flower_key, u32 flower_mask,
...@@ -592,8 +595,8 @@ static int fl_set_key(struct net *net, struct nlattr **tb, ...@@ -592,8 +595,8 @@ static int fl_set_key(struct net *net, struct nlattr **tb,
if (tb[TCA_FLOWER_KEY_ETH_TYPE]) { if (tb[TCA_FLOWER_KEY_ETH_TYPE]) {
ethertype = nla_get_be16(tb[TCA_FLOWER_KEY_ETH_TYPE]); ethertype = nla_get_be16(tb[TCA_FLOWER_KEY_ETH_TYPE]);
if (ethertype == htons(ETH_P_8021Q)) { if (eth_type_vlan(ethertype)) {
fl_set_key_vlan(tb, &key->vlan, &mask->vlan); fl_set_key_vlan(tb, ethertype, &key->vlan, &mask->vlan);
fl_set_key_val(tb, &key->basic.n_proto, fl_set_key_val(tb, &key->basic.n_proto,
TCA_FLOWER_KEY_VLAN_ETH_TYPE, TCA_FLOWER_KEY_VLAN_ETH_TYPE,
&mask->basic.n_proto, TCA_FLOWER_UNSPEC, &mask->basic.n_proto, TCA_FLOWER_UNSPEC,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment