aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/output_core.c
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2015-05-25 16:02:21 -0700
committerDavid S. Miller <davem@davemloft.net>2015-05-25 20:27:11 -0400
commit7f1598678d4c05e3e085bf780a5ab3119637ac3c (patch)
tree50a5ec9bb25f0343e89d2ad7eba81d369011533b /net/ipv6/output_core.c
parentMerge branch 'cpsw-cleanups' (diff)
downloadlinux-dev-7f1598678d4c05e3e085bf780a5ab3119637ac3c.tar.xz
linux-dev-7f1598678d4c05e3e085bf780a5ab3119637ac3c.zip
ipv6: ipv6_select_ident() returns a __be32
ipv6_select_ident() returns a 32bit value in network order. Fixes: 286c2349f666 ("ipv6: Clean up ipv6_select_ident() and ip6_fragment()") Signed-off-by: Eric Dumazet <edumazet@google.com> Reported-by: kbuild test robot <fengguang.wu@intel.com> Acked-by: Martin KaFai Lau <kafai@fb.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/output_core.c')
-rw-r--r--net/ipv6/output_core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv6/output_core.c b/net/ipv6/output_core.c
index 055e85cb7b65..21678acd4521 100644
--- a/net/ipv6/output_core.c
+++ b/net/ipv6/output_core.c
@@ -61,9 +61,9 @@ void ipv6_proxy_select_ident(struct net *net, struct sk_buff *skb)
}
EXPORT_SYMBOL_GPL(ipv6_proxy_select_ident);
-u32 ipv6_select_ident(struct net *net,
- const struct in6_addr *daddr,
- const struct in6_addr *saddr)
+__be32 ipv6_select_ident(struct net *net,
+ const struct in6_addr *daddr,
+ const struct in6_addr *saddr)
{
static u32 ip6_idents_hashrnd __read_mostly;
u32 id;