diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2011-04-22 00:53:02 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-22 14:04:14 -0400 |
commit | b71d1d426d263b0b6cb5760322efebbfc89d4463 (patch) | |
tree | 226ca7390bd6187ec9139d2ccedd26fd94d8e57a /include/net/if_inet6.h | |
parent | 5f8629c526b4f7e529a6d27bbd802c0dc7fcc357 (diff) |
inet: constify ip headers and in6_addr
Add const qualifiers to structs iphdr, ipv6hdr and in6_addr pointers
where possible, to make code intention more obvious.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/if_inet6.h')
-rw-r--r-- | include/net/if_inet6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/if_inet6.h b/include/net/if_inet6.h index fccc2180c61b..3d982f72d48e 100644 --- a/include/net/if_inet6.h +++ b/include/net/if_inet6.h | |||
@@ -196,7 +196,7 @@ struct inet6_dev { | |||
196 | struct rcu_head rcu; | 196 | struct rcu_head rcu; |
197 | }; | 197 | }; |
198 | 198 | ||
199 | static inline void ipv6_eth_mc_map(struct in6_addr *addr, char *buf) | 199 | static inline void ipv6_eth_mc_map(const struct in6_addr *addr, char *buf) |
200 | { | 200 | { |
201 | /* | 201 | /* |
202 | * +-------+-------+-------+-------+-------+-------+ | 202 | * +-------+-------+-------+-------+-------+-------+ |
@@ -210,7 +210,7 @@ static inline void ipv6_eth_mc_map(struct in6_addr *addr, char *buf) | |||
210 | memcpy(buf + 2, &addr->s6_addr32[3], sizeof(__u32)); | 210 | memcpy(buf + 2, &addr->s6_addr32[3], sizeof(__u32)); |
211 | } | 211 | } |
212 | 212 | ||
213 | static inline void ipv6_tr_mc_map(struct in6_addr *addr, char *buf) | 213 | static inline void ipv6_tr_mc_map(const struct in6_addr *addr, char *buf) |
214 | { | 214 | { |
215 | /* All nodes FF01::1, FF02::1, FF02::1:FFxx:xxxx */ | 215 | /* All nodes FF01::1, FF02::1, FF02::1:FFxx:xxxx */ |
216 | 216 | ||