diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-04-14 05:15:42 -0400 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2008-04-14 05:15:42 -0400 |
commit | 58c0fb0ddd92e5105d61fc85b6e7af7b1f669067 (patch) | |
tree | 5fadd0c011f118e6ae67b5874dfcde4185ac4593 /net/ipv6 | |
parent | 5452e425adfdfc4647b618e303f73d48f2405b0e (diff) |
[NETFILTER]: annotate rest of nf_conntrack_* with const
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/nf_conntrack_reasm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c index 9e5f305b2022..2dccad48058c 100644 --- a/net/ipv6/netfilter/nf_conntrack_reasm.c +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c | |||
@@ -103,8 +103,8 @@ struct ctl_table nf_ct_ipv6_sysctl_table[] = { | |||
103 | }; | 103 | }; |
104 | #endif | 104 | #endif |
105 | 105 | ||
106 | static unsigned int ip6qhashfn(__be32 id, struct in6_addr *saddr, | 106 | static unsigned int ip6qhashfn(__be32 id, const struct in6_addr *saddr, |
107 | struct in6_addr *daddr) | 107 | const struct in6_addr *daddr) |
108 | { | 108 | { |
109 | u32 a, b, c; | 109 | u32 a, b, c; |
110 | 110 | ||
@@ -132,7 +132,7 @@ static unsigned int ip6qhashfn(__be32 id, struct in6_addr *saddr, | |||
132 | 132 | ||
133 | static unsigned int nf_hashfn(struct inet_frag_queue *q) | 133 | static unsigned int nf_hashfn(struct inet_frag_queue *q) |
134 | { | 134 | { |
135 | struct nf_ct_frag6_queue *nq; | 135 | const struct nf_ct_frag6_queue *nq; |
136 | 136 | ||
137 | nq = container_of(q, struct nf_ct_frag6_queue, q); | 137 | nq = container_of(q, struct nf_ct_frag6_queue, q); |
138 | return ip6qhashfn(nq->id, &nq->saddr, &nq->daddr); | 138 | return ip6qhashfn(nq->id, &nq->saddr, &nq->daddr); |
@@ -222,7 +222,7 @@ oom: | |||
222 | 222 | ||
223 | 223 | ||
224 | static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb, | 224 | static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb, |
225 | struct frag_hdr *fhdr, int nhoff) | 225 | const struct frag_hdr *fhdr, int nhoff) |
226 | { | 226 | { |
227 | struct sk_buff *prev, *next; | 227 | struct sk_buff *prev, *next; |
228 | int offset, end; | 228 | int offset, end; |