lkml.org 
[lkml]   [2007]   [Feb]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] FRA_{DST,SRC} are le16 for decnet
From
Date

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
net/decnet/dn_rules.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net/decnet/dn_rules.c b/net/decnet/dn_rules.c
index e32d0c3..b6c98ac 100644
--- a/net/decnet/dn_rules.c
+++ b/net/decnet/dn_rules.c
@@ -151,10 +151,10 @@ static int dn_fib_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
}

if (tb[FRA_SRC])
- r->src = nla_get_u16(tb[FRA_SRC]);
+ r->src = nla_get_le16(tb[FRA_SRC]);

if (tb[FRA_DST])
- r->dst = nla_get_u16(tb[FRA_DST]);
+ r->dst = nla_get_le16(tb[FRA_DST]);

r->src_len = frh->src_len;
r->srcmask = dnet_make_mask(r->src_len);
@@ -176,10 +176,10 @@ static int dn_fib_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
if (frh->dst_len && (r->dst_len != frh->dst_len))
return 0;

- if (tb[FRA_SRC] && (r->src != nla_get_u16(tb[FRA_SRC])))
+ if (tb[FRA_SRC] && (r->src != nla_get_le16(tb[FRA_SRC])))
return 0;

- if (tb[FRA_DST] && (r->dst != nla_get_u16(tb[FRA_DST])))
+ if (tb[FRA_DST] && (r->dst != nla_get_le16(tb[FRA_DST])))
return 0;

return 1;
@@ -214,9 +214,9 @@ static int dn_fib_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
frh->tos = 0;

if (r->dst_len)
- NLA_PUT_U16(skb, FRA_DST, r->dst);
+ NLA_PUT_LE16(skb, FRA_DST, r->dst);
if (r->src_len)
- NLA_PUT_U16(skb, FRA_SRC, r->src);
+ NLA_PUT_LE16(skb, FRA_SRC, r->src);

return 0;

--
1.5.0-rc2.GIT

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2007-02-09 19:17    [W:1.321 / U:0.124 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site