mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-13 09:20:17 +00:00
net: ipv6: make "ip -6 route get mark xyz" work.
Currently, "ip -6 route get mark xyz" ignores the mark passed in by userspace. Make it honour the mark, just like IPv4 does. Signed-off-by: Lorenzo Colitti <lorenzo@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2f67cc87d6
commit
2e47b29195
@ -2730,6 +2730,9 @@ static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr* nlh)
|
|||||||
if (tb[RTA_OIF])
|
if (tb[RTA_OIF])
|
||||||
oif = nla_get_u32(tb[RTA_OIF]);
|
oif = nla_get_u32(tb[RTA_OIF]);
|
||||||
|
|
||||||
|
if (tb[RTA_MARK])
|
||||||
|
fl6.flowi6_mark = nla_get_u32(tb[RTA_MARK]);
|
||||||
|
|
||||||
if (iif) {
|
if (iif) {
|
||||||
struct net_device *dev;
|
struct net_device *dev;
|
||||||
int flags = 0;
|
int flags = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user