diff options
author | Florian Westphal <fw@strlen.de> | 2016-10-26 19:49:46 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-10-29 22:10:21 +0300 |
commit | b917783c7b350518f8c5d88bb5848aa8064408a6 (patch) | |
tree | 7d7493bd10bf3920095aa9243db539ab141b2460 /net/core | |
parent | 5ea8ea2cb7f1d0db15762c9b0bb9e7330425a071 (diff) | |
download | linux-b917783c7b350518f8c5d88bb5848aa8064408a6.tar.xz |
flow_dissector: __skb_get_hash_symmetric arg can be const
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/flow_dissector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c index 1a7b80f73376..0cc607d05fc8 100644 --- a/net/core/flow_dissector.c +++ b/net/core/flow_dissector.c @@ -723,7 +723,7 @@ EXPORT_SYMBOL(make_flow_keys_digest); static struct flow_dissector flow_keys_dissector_symmetric __read_mostly; -u32 __skb_get_hash_symmetric(struct sk_buff *skb) +u32 __skb_get_hash_symmetric(const struct sk_buff *skb) { struct flow_keys keys; |