projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c67525
)
vti: fix sparse bit endian warnings
author
stephen hemminger
<shemminger@vyatta.com>
Thu, 11 Oct 2012 12:51:28 +0000
(12:51 +0000)
committer
David S. Miller
<davem@davemloft.net>
Fri, 12 Oct 2012 17:56:52 +0000
(13:56 -0400)
Use be32_to_cpu instead of htonl to keep sparse happy.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/ip_vti.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv4/ip_vti.c
b/net/ipv4/ip_vti.c
index 978bca4818aef0c52dda4011c2a98b7ef0326559..1831092f999fb32880f2d5e721c242236b000228 100644
(file)
--- a/
net/ipv4/ip_vti.c
+++ b/
net/ipv4/ip_vti.c
@@
-374,7
+374,7
@@
static netdev_tx_t vti_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
memset(&fl4, 0, sizeof(fl4));
flowi4_init_output(&fl4, tunnel->parms.link,
-
htonl
(tunnel->parms.i_key), RT_TOS(tos),
+
be32_to_cpu
(tunnel->parms.i_key), RT_TOS(tos),
RT_SCOPE_UNIVERSE,
IPPROTO_IPIP, 0,
dst, tiph->saddr, 0, 0);
@@
-441,7
+441,7
@@
static int vti_tunnel_bind_dev(struct net_device *dev)
struct flowi4 fl4;
memset(&fl4, 0, sizeof(fl4));
flowi4_init_output(&fl4, tunnel->parms.link,
-
htonl
(tunnel->parms.i_key),
+
be32_to_cpu
(tunnel->parms.i_key),
RT_TOS(iph->tos), RT_SCOPE_UNIVERSE,
IPPROTO_IPIP, 0,
iph->daddr, iph->saddr, 0, 0);