diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-27 01:27:30 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 21:01:19 -0400 |
commit | 13d8eaa06abfeb708b60fa64203a20db033088b3 (patch) | |
tree | 87fb8643226444ec20368fe7d274b2e84e8e1910 | |
parent | 8712f774dc47ec6353c9b75317d6db62e58d9367 (diff) |
[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>
-rw-r--r-- | include/net/ip.h | 2 | ||||
-rw-r--r-- | net/ipv4/ip_output.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/net/ip.h b/include/net/ip.h index b9a5bc9487e3..6da1229c041a 100644 --- a/include/net/ip.h +++ b/include/net/ip.h | |||
@@ -86,7 +86,7 @@ extern int igmp_mc_proc_init(void); | |||
86 | */ | 86 | */ |
87 | 87 | ||
88 | extern int ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk, | 88 | extern int ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk, |
89 | u32 saddr, u32 daddr, | 89 | __be32 saddr, __be32 daddr, |
90 | struct ip_options *opt); | 90 | struct ip_options *opt); |
91 | extern int ip_rcv(struct sk_buff *skb, struct net_device *dev, | 91 | extern int ip_rcv(struct sk_buff *skb, struct net_device *dev, |
92 | struct packet_type *pt, struct net_device *orig_dev); | 92 | struct packet_type *pt, struct net_device *orig_dev); |
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) | |||
118 | * | 118 | * |
119 | */ | 119 | */ |
120 | int ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk, | 120 | int ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk, |
121 | u32 saddr, u32 daddr, struct ip_options *opt) | 121 | __be32 saddr, __be32 daddr, struct ip_options *opt) |
122 | { | 122 | { |
123 | struct inet_sock *inet = inet_sk(sk); | 123 | struct inet_sock *inet = inet_sk(sk); |
124 | struct rtable *rt = (struct rtable *)skb->dst; | 124 | struct rtable *rt = (struct rtable *)skb->dst; |