From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Ahern Subject: Re: [PATCH net] ipv6: omit traffic class when calculating flow hash Date: Fri, 1 Jun 2018 11:55:17 -0600 Message-ID: References: <20180601112948.93BE7A0C48@unicorn.suse.cz> <4c70b2ef-20c2-0e7c-d1f6-7d4c97e566f2@gmail.com> <20180601175150.jgmmdygb2pzjvmqo@unicorn.suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: "David S. Miller" , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Nicolas Dichtel , Tom Herbert To: Michal Kubecek Return-path: In-Reply-To: <20180601175150.jgmmdygb2pzjvmqo@unicorn.suse.cz> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On 6/1/18 11:51 AM, Michal Kubecek wrote: > On Fri, Jun 01, 2018 at 10:42:10AM -0600, David Ahern wrote: >> >> Can you make an inline for the flowlabel conversion. Something like this: >> >> diff --git a/include/net/ipv6.h b/include/net/ipv6.h >> index 798558fd1681..e36eca2f8531 100644 >> --- a/include/net/ipv6.h >> +++ b/include/net/ipv6.h >> @@ -284,6 +284,11 @@ struct ip6_flowlabel { >> #define IPV6_FLOWLABEL_MASK cpu_to_be32(0x000FFFFF) >> #define IPV6_FLOWLABEL_STATELESS_FLAG cpu_to_be32(0x00080000) >> >> +static inline u32 flowi6_get_flowlabel(const struct flowi6 *fl6) >> +{ >> + return (__force u32)(fl6->flowlabel & IPV6_FLOWLABEL_MASK); >> +} >> + >> #define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK) >> #define IPV6_TCLASS_SHIFT 20 >> >> From there we can fix the flow struct to have flowinfo instead of >> flowlabel and use the macro to hide the conversion. > > I'll send v2 with inline helper. I'm just not sure about including the > cast as this way the helper would be useful for hash key which is not > clear from the name. So it seems more appropriate to either introduce a > helper which just does the masking or helper which does also the copying > into struct flow_keys. > I think the cast should stay in the helper. See the RFC patch flipping the name from flowlabel to flowinfo. Makes the code the more readable IMHO.