struct fib6_node *fn;
        bool status = false;
 
-       rcu_read_lock();
        fn = rcu_dereference(f6i->fib6_node);
 
        if (fn) {
                status = true;
        }
 
-       rcu_read_unlock();
        return status;
 }
 
 {
        u32 cookie = 0;
 
+       rcu_read_lock();
+
        if (rt->rt6i_flags & RTF_PCPU ||
            (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->from))
                fib6_get_cookie_safe(rt->from, &cookie);
 
+       rcu_read_unlock();
+
        return cookie;
 }
 
 
 
 static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie)
 {
+       struct dst_entry *dst_ret;
        struct rt6_info *rt;
 
-       rt = (struct rt6_info *) dst;
+       rt = container_of(dst, struct rt6_info, dst);
+
+       rcu_read_lock();
 
        /* All IPV6 dsts are created with ->obsolete set to the value
         * DST_OBSOLETE_FORCE_CHK which forces validation calls down
 
        if (rt->rt6i_flags & RTF_PCPU ||
            (unlikely(!list_empty(&rt->rt6i_uncached)) && rt->from))
-               return rt6_dst_from_check(rt, cookie);
+               dst_ret = rt6_dst_from_check(rt, cookie);
        else
-               return rt6_check(rt, cookie);
+               dst_ret = rt6_check(rt, cookie);
+
+       rcu_read_unlock();
+
+       return dst_ret;
 }
 
 static struct dst_entry *ip6_negative_advice(struct dst_entry *dst)