diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-27 09:27:05 +0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-29 05:01:18 +0400 |
commit | 8712f774dc47ec6353c9b75317d6db62e58d9367 (patch) | |
tree | 86a3298c55963e3248f4ea4c335b27b3160d583a /include/net | |
parent | e8192f367cb3dcbefaa4109d26f3b1645b0c6b56 (diff) | |
download | linux-8712f774dc47ec6353c9b75317d6db62e58d9367.tar.xz |
[IPV4]: ip_options_build() annotations
daddr is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip.h b/include/net/ip.h index 98f908400771..b9a5bc9487e3 100644 --- a/include/net/ip.h +++ b/include/net/ip.h @@ -335,7 +335,7 @@ extern int ip_net_unreachable(struct sk_buff *skb); * Functions provided by ip_options.c */ -extern void ip_options_build(struct sk_buff *skb, struct ip_options *opt, u32 daddr, struct rtable *rt, int is_frag); +extern void ip_options_build(struct sk_buff *skb, struct ip_options *opt, __be32 daddr, struct rtable *rt, int is_frag); extern int ip_options_echo(struct ip_options *dopt, struct sk_buff *skb); extern void ip_options_fragment(struct sk_buff *skb); extern int ip_options_compile(struct ip_options *opt, struct sk_buff *skb); |