diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-27 21:47:24 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 21:02:37 -0400 |
commit | a94cfd19744a568d97b14bbaa500b2a0c3684f34 (patch) | |
tree | 1e933aec3969ba63315d147fa39d0103ce311200 /net/ipv6/ipcomp6.c | |
parent | 26977b4ed728ae911a162b16dbfe1a165b7cf9a1 (diff) |
[XFRM]: xfrm_state_lookup() annotations
spi argument of xfrm_state_lookup() is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ipcomp6.c')
-rw-r--r-- | net/ipv6/ipcomp6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c index ad9c6e824e62..a2860e35efd7 100644 --- a/net/ipv6/ipcomp6.c +++ b/net/ipv6/ipcomp6.c | |||
@@ -178,7 +178,7 @@ out_ok: | |||
178 | static void ipcomp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | 178 | static void ipcomp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, |
179 | int type, int code, int offset, __u32 info) | 179 | int type, int code, int offset, __u32 info) |
180 | { | 180 | { |
181 | u32 spi; | 181 | __be32 spi; |
182 | struct ipv6hdr *iph = (struct ipv6hdr*)skb->data; | 182 | struct ipv6hdr *iph = (struct ipv6hdr*)skb->data; |
183 | struct ipv6_comp_hdr *ipcomph = (struct ipv6_comp_hdr*)(skb->data+offset); | 183 | struct ipv6_comp_hdr *ipcomph = (struct ipv6_comp_hdr*)(skb->data+offset); |
184 | struct xfrm_state *x; | 184 | struct xfrm_state *x; |
@@ -234,7 +234,7 @@ static int ipcomp6_tunnel_attach(struct xfrm_state *x) | |||
234 | { | 234 | { |
235 | int err = 0; | 235 | int err = 0; |
236 | struct xfrm_state *t = NULL; | 236 | struct xfrm_state *t = NULL; |
237 | u32 spi; | 237 | __be32 spi; |
238 | 238 | ||
239 | spi = xfrm6_tunnel_spi_lookup((xfrm_address_t *)&x->props.saddr); | 239 | spi = xfrm6_tunnel_spi_lookup((xfrm_address_t *)&x->props.saddr); |
240 | if (spi) | 240 | if (spi) |