lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1425093109-1077-4-git-send-email-therbert@google.com> Date: Fri, 27 Feb 2015 19:11:46 -0800 From: Tom Herbert <therbert@...gle.com> To: davem@...emloft.net, netdev@...r.kernel.org Subject: [PATCH net-next 3/6] flow_dissector: Add hash_extra field to flow_keys struct This will be used for additional input into the hash computation such as VLAN ID or GRE keyid. Signed-off-by: Tom Herbert <therbert@...gle.com> --- include/net/flow_keys.h | 1 + include/net/sch_generic.h | 2 +- net/core/flow_dissector.c | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/net/flow_keys.h b/include/net/flow_keys.h index dc8fd81..d498ee8 100644 --- a/include/net/flow_keys.h +++ b/include/net/flow_keys.h @@ -24,6 +24,7 @@ struct flow_keys { }; u16 thoff; __be16 n_proto; + __be32 hash_extra; u8 ip_proto; }; diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index c605d30..d41a034 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h @@ -252,7 +252,7 @@ struct qdisc_skb_cb { unsigned int pkt_len; u16 slave_dev_queue_mapping; u16 _pad; -#define QDISC_CB_PRIV_LEN 20 +#define QDISC_CB_PRIV_LEN 24 unsigned char data[QDISC_CB_PRIV_LEN]; }; diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c index f73a248..84bb794 100644 --- a/net/core/flow_dissector.c +++ b/net/core/flow_dissector.c @@ -286,7 +286,7 @@ static inline u32 __flow_hash_from_keys(struct flow_keys *keys) swap(keys->port16[0], keys->port16[1]); } - extra = keys->ip_proto; + extra = keys->ip_proto ^ keys->hash_extra; hash = __flow_hash_3words((__force u32)keys->dst ^ extra, (__force u32)keys->src, (__force u32)keys->ports); -- 2.2.0.rc0.207.ga3a616c -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists