ipv6: fix a typo in fib6_rule_lookup()

Yi Ren reported an issue discovered by syzkaller, and bisected
to the cited commit.

Many thanks to Yi, this trivial patch does not reflect the patient
work that has been done.

Fixes: d64a1f574a ("ipv6: honor RT6_LOOKUP_F_DST_NOREF in rule lookup logic")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Wei Wang <weiwan@google.com>
Bisected-and-reported-by: Yi Ren <c4tren@gmail.com>
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
This commit is contained in:
Eric Dumazet 2019-09-19 10:12:36 -07:00 committed by Jakub Kicinski
parent b41d936b5e
commit 7b09c2d052

View File

@ -318,7 +318,7 @@ struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
if (rt->dst.error == -EAGAIN) { if (rt->dst.error == -EAGAIN) {
ip6_rt_put_flags(rt, flags); ip6_rt_put_flags(rt, flags);
rt = net->ipv6.ip6_null_entry; rt = net->ipv6.ip6_null_entry;
if (!(flags | RT6_LOOKUP_F_DST_NOREF)) if (!(flags & RT6_LOOKUP_F_DST_NOREF))
dst_hold(&rt->dst); dst_hold(&rt->dst);
} }