diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-27 18:40:00 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 18:02:23 -0700 |
commit | 81f7bf6cbaca02c034b0393c51fc22b29cba20f7 (patch) | |
tree | e0da3b9060cb955588895c0c73547df6cc74a8bc /net/ipv4/fib_rules.c | |
parent | 114c7844f34c1608aec20ae7ff85cec471ac90ae (diff) | |
download | linux-stable-81f7bf6cbaca02c034b0393c51fc22b29cba20f7.tar.gz linux-stable-81f7bf6cbaca02c034b0393c51fc22b29cba20f7.tar.bz2 linux-stable-81f7bf6cbaca02c034b0393c51fc22b29cba20f7.zip |
[IPV4]: net/ipv4/fib annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_rules.c')
-rw-r--r-- | net/ipv4/fib_rules.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c index 52b2adae4f22..f2d4070aaf01 100644 --- a/net/ipv4/fib_rules.c +++ b/net/ipv4/fib_rules.c @@ -40,10 +40,10 @@ struct fib4_rule u8 dst_len; u8 src_len; u8 tos; - u32 src; - u32 srcmask; - u32 dst; - u32 dstmask; + __be32 src; + __be32 srcmask; + __be32 dst; + __be32 dstmask; #ifdef CONFIG_IP_ROUTE_FWMARK u32 fwmark; u32 fwmask; @@ -150,8 +150,8 @@ void fib_select_default(const struct flowi *flp, struct fib_result *res) static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags) { struct fib4_rule *r = (struct fib4_rule *) rule; - u32 daddr = fl->fl4_dst; - u32 saddr = fl->fl4_src; + __be32 daddr = fl->fl4_dst; + __be32 saddr = fl->fl4_src; if (((saddr ^ r->src) & r->srcmask) || ((daddr ^ r->dst) & r->dstmask)) |