[<prev] [next>] [day] [month] [year] [list]
Message-ID: <CAJL1qvGt_QwecHfPMvkr54=uT8OBZ88DMmn5E=BQRpUWY6aHKw@mail.gmail.com>
Date: Sun, 7 Aug 2016 10:43:25 +0300
From: Hadar Hen Zion <hadarh@....mellanox.co.il>
To: tom@...bertland.com, Jiri Pirko <jiri@...lanox.com>
Cc: Amir Vadai <amirva@...il.com>, Or Gerlitz <ogerlitz@...lanox.com>,
netdev <netdev@...r.kernel.org>
Subject: flow_dissector: Get vlan priority in addition to vlan id
Hi Tom and Jiri,
I would like to add vlan priority to __skb_flow_dissect.
In the current vlan tag implementation there isn't any room left to
vlan priority next to the vlan id.
struct flow_dissector_key_tags {
u32 vlan_id:12,
flow_label:20;
};
According to the discussion between you two [1], I'll be happy to get
your advice about what is the best way of adding vlan priority?
My suggestion is to add new vlan tag struct, it will make the code
cleaner and since we have to add 3 bits to vlan priority any way it
won't add unnecessary physical address holes.
struct flow_dissector_key_tags {
u32 flow_label:20;
};
struct flow_dissector_key_vlan {
u16 vlan_id:12,
vlan_priority:3;
};
Thanks,
Hadar
[1] - http://marc.info/?l=linux-netdev&m=143232557025994&w=2
Powered by blists - more mailing lists