diff options
author | Florian Westphal <fw@strlen.de> | 2014-07-24 10:50:29 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-28 01:34:35 -0400 |
commit | 36c7778218b93d96d88d68f116a711f6a598b72f (patch) | |
tree | 39b39a0f448c249d1c9eb61e72cadea2348698ba /include/net/ipv6.h | |
parent | ac3d2e5a9ef2f4d8f57c50070c4883ecb7cec29f (diff) |
inet: frag: constify match, hashfn and constructor arguments
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ipv6.h')
-rw-r--r-- | include/net/ipv6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index a25017247457..25c2170e1298 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h | |||
@@ -496,8 +496,8 @@ struct ip6_create_arg { | |||
496 | u8 ecn; | 496 | u8 ecn; |
497 | }; | 497 | }; |
498 | 498 | ||
499 | void ip6_frag_init(struct inet_frag_queue *q, void *a); | 499 | void ip6_frag_init(struct inet_frag_queue *q, const void *a); |
500 | bool ip6_frag_match(struct inet_frag_queue *q, void *a); | 500 | bool ip6_frag_match(const struct inet_frag_queue *q, const void *a); |
501 | 501 | ||
502 | /* | 502 | /* |
503 | * Equivalent of ipv4 struct ip | 503 | * Equivalent of ipv4 struct ip |