Commit b8dad61c authored by David S. Miller's avatar David S. Miller

ipv4: If fib metrics are default, no need to grab ref to FIB info.

The fib metric memory in this case is static in the kernel image,
so we don't need to reference count it since it's never going
to go away on us.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 725d1e1b
...@@ -1861,8 +1861,10 @@ static void rt_init_metrics(struct rtable *rt, struct fib_info *fi) ...@@ -1861,8 +1861,10 @@ static void rt_init_metrics(struct rtable *rt, struct fib_info *fi)
{ {
if (!(rt->fl.flags & FLOWI_FLAG_PRECOW_METRICS)) { if (!(rt->fl.flags & FLOWI_FLAG_PRECOW_METRICS)) {
no_cow: no_cow:
rt->fi = fi; if (fi->fib_metrics != (u32 *) dst_default_metrics) {
atomic_inc(&fi->fib_clntref); rt->fi = fi;
atomic_inc(&fi->fib_clntref);
}
dst_init_metrics(&rt->dst, fi->fib_metrics, true); dst_init_metrics(&rt->dst, fi->fib_metrics, true);
} else { } else {
struct inet_peer *peer; struct inet_peer *peer;
......
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