diff options
author | Eric Dumazet <edumazet@google.com> | 2022-02-10 13:42:28 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-02-11 11:44:27 +0000 |
commit | 2d4feb2c1ba728fe53d6f80705b2d7e5c5b666a5 (patch) | |
tree | 9805f7215e1f15477a277d38ab1e5d289a563be6 /include/net/ip6_fib.h | |
parent | dsa: mv88e6xxx: make serdes SGMII/Fiber tx amplitude configurable (diff) | |
download | linux-dev-2d4feb2c1ba728fe53d6f80705b2d7e5c5b666a5.tar.xz linux-dev-2d4feb2c1ba728fe53d6f80705b2d7e5c5b666a5.zip |
ipv6: get rid of net->ipv6.rt6_stats->fib_rt_uncache
This counter has never been visible, there is little point
trying to maintain it.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip6_fib.h')
-rw-r--r-- | include/net/ip6_fib.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/ip6_fib.h b/include/net/ip6_fib.h index 40ae8f1b18e5..32c83bb68879 100644 --- a/include/net/ip6_fib.h +++ b/include/net/ip6_fib.h @@ -367,9 +367,8 @@ struct rt6_statistics { __u32 fib_rt_cache; /* cached rt entries in exception table */ __u32 fib_discarded_routes; /* total number of routes delete */ - /* The following stats are not protected by any lock */ + /* The following stat is not protected by any lock */ atomic_t fib_rt_alloc; /* total number of routes alloced */ - atomic_t fib_rt_uncache; /* rt entries in uncached list */ }; #define RTN_TL_ROOT 0x0001 |