diff options
author | David Ahern <dsahern@gmail.com> | 2018-05-04 13:54:24 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-04 19:54:52 -0400 |
commit | 8fb11a9a8d51df9a314a6d970436963c127ff1bd (patch) | |
tree | e8e04a1e2303ce845d2365e9d4971bdfe4ef6d65 /include/net/ip6_fib.h | |
parent | 2d943adf860302a4c7bfee498e64ded9fe7d9dba (diff) | |
download | linux-8fb11a9a8d51df9a314a6d970436963c127ff1bd.tar.gz linux-8fb11a9a8d51df9a314a6d970436963c127ff1bd.tar.bz2 linux-8fb11a9a8d51df9a314a6d970436963c127ff1bd.zip |
net/ipv6: rename rt6_next to fib6_next
This slipped through the cracks in the followup set to the fib6_info flip.
Rename rt6_next to fib6_next.
Signed-off-by: David Ahern <dsahern@gmail.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 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/ip6_fib.h b/include/net/ip6_fib.h index 1af450d4e923..a3ec08d05756 100644 --- a/include/net/ip6_fib.h +++ b/include/net/ip6_fib.h @@ -135,7 +135,7 @@ struct fib6_nh { struct fib6_info { struct fib6_table *fib6_table; - struct fib6_info __rcu *rt6_next; + struct fib6_info __rcu *fib6_next; struct fib6_node __rcu *fib6_node; /* Multipath routes: @@ -192,11 +192,11 @@ struct rt6_info { #define for_each_fib6_node_rt_rcu(fn) \ for (rt = rcu_dereference((fn)->leaf); rt; \ - rt = rcu_dereference(rt->rt6_next)) + rt = rcu_dereference(rt->fib6_next)) #define for_each_fib6_walker_rt(w) \ for (rt = (w)->leaf; rt; \ - rt = rcu_dereference_protected(rt->rt6_next, 1)) + rt = rcu_dereference_protected(rt->fib6_next, 1)) static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst) { |