Эх сурвалжийг харах

Merge branch 'ipv6_ufo_fix'

Vladislav Yasevich says:

====================
IPv6 Fix 2 small issues with UFO restoration code

This series fixes 2 small issues introduced by the
"Restore UFO support to virtio_net devices" series.

V2:  Fixed patch title and description for patch1.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 10 жил өмнө
parent
commit
223ab8ffeb

+ 0 - 2
include/net/ipv6.h

@@ -671,8 +671,6 @@ static inline int ipv6_addr_diff(const struct in6_addr *a1, const struct in6_add
 	return __ipv6_addr_diff(a1, a2, sizeof(struct in6_addr));
 	return __ipv6_addr_diff(a1, a2, sizeof(struct in6_addr));
 }
 }
 
 
-u32 __ipv6_select_ident(u32 hashrnd, struct in6_addr *dst,
-			struct in6_addr *src);
 void ipv6_select_ident(struct frag_hdr *fhdr, struct rt6_info *rt);
 void ipv6_select_ident(struct frag_hdr *fhdr, struct rt6_info *rt);
 void ipv6_proxy_select_ident(struct sk_buff *skb);
 void ipv6_proxy_select_ident(struct sk_buff *skb);
 
 

+ 3 - 2
net/ipv6/output_core.c

@@ -9,7 +9,8 @@
 #include <net/addrconf.h>
 #include <net/addrconf.h>
 #include <net/secure_seq.h>
 #include <net/secure_seq.h>
 
 
-u32 __ipv6_select_ident(u32 hashrnd, struct in6_addr *dst, struct in6_addr *src)
+static u32 __ipv6_select_ident(u32 hashrnd, struct in6_addr *dst,
+			       struct in6_addr *src)
 {
 {
 	u32 hash, id;
 	u32 hash, id;
 
 
@@ -54,7 +55,7 @@ void ipv6_proxy_select_ident(struct sk_buff *skb)
 
 
 	id = __ipv6_select_ident(ip6_proxy_idents_hashrnd,
 	id = __ipv6_select_ident(ip6_proxy_idents_hashrnd,
 				 &addrs[1], &addrs[0]);
 				 &addrs[1], &addrs[0]);
-	skb_shinfo(skb)->ip6_frag_id = id;
+	skb_shinfo(skb)->ip6_frag_id = htonl(id);
 }
 }
 EXPORT_SYMBOL_GPL(ipv6_proxy_select_ident);
 EXPORT_SYMBOL_GPL(ipv6_proxy_select_ident);