diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-26 21:28:14 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 17:54:09 -0700 |
commit | d9c9df8c9368f4102324e8c3923edae83974602b (patch) | |
tree | 11b1df675c261c5fe9ea84e954de276905d6ec40 /net/ipv4/route.c | |
parent | a61ced5d1c2e773620d7855ea2009d770c10a6e6 (diff) | |
download | linux-3.10-d9c9df8c9368f4102324e8c3923edae83974602b.tar.gz linux-3.10-d9c9df8c9368f4102324e8c3923edae83974602b.tar.bz2 linux-3.10-d9c9df8c9368f4102324e8c3923edae83974602b.zip |
[IPV4]: fib_validate_source() annotations
annotated arguments and inferred net-endian variables in callers
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r-- | net/ipv4/route.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 9d8fbf1e5bc..4bb66fee454 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -1722,7 +1722,8 @@ static inline int __mkroute_input(struct sk_buff *skb, int err; struct in_device *out_dev; unsigned flags = 0; - u32 spec_dst, itag; + __be32 spec_dst; + u32 itag; /* get a working reference to the output device */ out_dev = in_dev_get(FIB_RES_DEV(*res)); |