Commit 540e585a authored by Jethro Beekman's avatar Jethro Beekman Committed by David S. Miller

net: fib_rules: Correctly set table field when table number exceeds 8 bits

In 709772e6, RT_TABLE_COMPAT was added to
allow legacy software to deal with routing table numbers >= 256, but the
same change to FIB rule queries was overlooked.
Signed-off-by: default avatarJethro Beekman <jethro@fortanix.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0d4597c8
......@@ -974,7 +974,7 @@ static int fib_nl_fill_rule(struct sk_buff *skb, struct fib_rule *rule,
frh = nlmsg_data(nlh);
frh->family = ops->family;
frh->table = rule->table;
frh->table = rule->table < 256 ? rule->table : RT_TABLE_COMPAT;
if (nla_put_u32(skb, FRA_TABLE, rule->table))
goto nla_put_failure;
if (nla_put_u32(skb, FRA_SUPPRESS_PREFIXLEN, rule->suppress_prefixlen))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment