summaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorDavid Ahern2018-04-21 00:37:58 +0200
committerDavid S. Miller2018-04-21 22:06:13 +0200
commita269f1a764bb3abf5c73499fb74bc7ab1c2e986c (patch)
tree29c6de763a856a0b50a2bb19c08e95ed3c47c40e /net/ipv6
parentnet/ipv6: Clean up rt expires helpers (diff)
downloadkernel-qcow2-linux-a269f1a764bb3abf5c73499fb74bc7ab1c2e986c.tar.gz
kernel-qcow2-linux-a269f1a764bb3abf5c73499fb74bc7ab1c2e986c.tar.xz
kernel-qcow2-linux-a269f1a764bb3abf5c73499fb74bc7ab1c2e986c.zip
net/ipv6: Rename rt6_get_cookie_safe
rt6_get_cookie_safe takes a fib6_info and checks the sernum of the node. Update the name to reflect its purpose. Signed-off-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/route.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index 062dd4d8232c..2d6fcfe11c82 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -2128,7 +2128,7 @@ static bool fib6_check(struct fib6_info *f6i, u32 cookie)
{
u32 rt_cookie = 0;
- if ((f6i && !rt6_get_cookie_safe(f6i, &rt_cookie)) ||
+ if ((f6i && !fib6_get_cookie_safe(f6i, &rt_cookie)) ||
rt_cookie != cookie)
return false;
@@ -2142,7 +2142,7 @@ static struct dst_entry *rt6_check(struct rt6_info *rt, u32 cookie)
{
u32 rt_cookie = 0;
- if ((rt->from && !rt6_get_cookie_safe(rt->from, &rt_cookie)) ||
+ if ((rt->from && !fib6_get_cookie_safe(rt->from, &rt_cookie)) ||
rt_cookie != cookie)
return NULL;