aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-09-26 22:27:30 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-28 18:01:19 -0700
commit13d8eaa06abfeb708b60fa64203a20db033088b3 (patch)
tree87fb8643226444ec20368fe7d274b2e84e8e1910 /net/ipv4
parent[IPV4]: ip_options_build() annotations (diff)
downloadlinux-dev-13d8eaa06abfeb708b60fa64203a20db033088b3.tar.xz
linux-dev-13d8eaa06abfeb708b60fa64203a20db033088b3.zip
[IPV4]: ip_build_and_send_pkt() annotations
saddr and daddr are 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/ipv4')
-rw-r--r--net/ipv4/ip_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index 97aee76fb746..5bf2f094e317 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -118,7 +118,7 @@ static inline int ip_select_ttl(struct inet_sock *inet, struct dst_entry *dst)
*
*/
int ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk,
- u32 saddr, u32 daddr, struct ip_options *opt)
+ __be32 saddr, __be32 daddr, struct ip_options *opt)
{
struct inet_sock *inet = inet_sk(sk);
struct rtable *rt = (struct rtable *)skb->dst;