Skip to content

Commit

Permalink
[IPV4]: FRA_{DST,SRC} annotated
Browse files Browse the repository at this point in the history
use be32 netlink accessors for those

Signed-off-by: Al Viro <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Al Viro authored and David S. Miller committed Sep 29, 2006
1 parent 81f7bf6 commit 45d60b9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions net/ipv4/fib_rules.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,10 @@ static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
}

if (tb[FRA_SRC])
rule4->src = nla_get_u32(tb[FRA_SRC]);
rule4->src = nla_get_be32(tb[FRA_SRC]);

if (tb[FRA_DST])
rule4->dst = nla_get_u32(tb[FRA_DST]);
rule4->dst = nla_get_be32(tb[FRA_DST]);

#ifdef CONFIG_IP_ROUTE_FWMARK
if (tb[FRA_FWMARK]) {
Expand Down Expand Up @@ -277,10 +277,10 @@ static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
return 0;
#endif

if (tb[FRA_SRC] && (rule4->src != nla_get_u32(tb[FRA_SRC])))
if (tb[FRA_SRC] && (rule4->src != nla_get_be32(tb[FRA_SRC])))
return 0;

if (tb[FRA_DST] && (rule4->dst != nla_get_u32(tb[FRA_DST])))
if (tb[FRA_DST] && (rule4->dst != nla_get_be32(tb[FRA_DST])))
return 0;

return 1;
Expand All @@ -305,10 +305,10 @@ static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
#endif

if (rule4->dst_len)
NLA_PUT_U32(skb, FRA_DST, rule4->dst);
NLA_PUT_BE32(skb, FRA_DST, rule4->dst);

if (rule4->src_len)
NLA_PUT_U32(skb, FRA_SRC, rule4->src);
NLA_PUT_BE32(skb, FRA_SRC, rule4->src);

#ifdef CONFIG_NET_CLS_ROUTE
if (rule4->tclassid)
Expand Down

0 comments on commit 45d60b9

Please sign in to comment.