#ifdef CONFIG_KRETPROBE_ON_RETHOOK
 static nokprobe_inline struct kretprobe *get_kretprobe(struct kretprobe_instance *ri)
 {
-       RCU_LOCKDEP_WARN(!rcu_read_lock_any_held(),
-               "Kretprobe is accessed from instance under preemptive context");
-
-       return (struct kretprobe *)READ_ONCE(ri->node.rethook->data);
+       /* rethook::data is non-changed field, so that you can access it freely. */
+       return (struct kretprobe *)ri->node.rethook->data;
 }
 static nokprobe_inline unsigned long get_kretprobe_retaddr(struct kretprobe_instance *ri)
 {
 
  */
 struct rethook {
        void                    *data;
-       rethook_handler_t       handler;
+       /*
+        * To avoid sparse warnings, this uses a raw function pointer with
+        * __rcu, instead of rethook_handler_t. But this must be same as
+        * rethook_handler_t.
+        */
+       void (__rcu *handler) (struct rethook_node *, void *, unsigned long, struct pt_regs *);
        struct objpool_head     pool;
        struct rcu_head         rcu;
 };
 
  */
 void rethook_stop(struct rethook *rh)
 {
-       WRITE_ONCE(rh->handler, NULL);
+       rcu_assign_pointer(rh->handler, NULL);
 }
 
 /**
  */
 void rethook_free(struct rethook *rh)
 {
-       WRITE_ONCE(rh->handler, NULL);
+       rethook_stop(rh);
 
        call_rcu(&rh->rcu, rethook_free_rcu);
 }
        return 0;
 }
 
+static inline rethook_handler_t rethook_get_handler(struct rethook *rh)
+{
+       return (rethook_handler_t)rcu_dereference_check(rh->handler,
+                                                       rcu_read_lock_any_held());
+}
+
 /**
  * rethook_alloc() - Allocate struct rethook.
  * @data: a data to pass the @handler when hooking the return.
                return ERR_PTR(-ENOMEM);
 
        rh->data = data;
-       rh->handler = handler;
+       rcu_assign_pointer(rh->handler, handler);
 
        /* initialize the objpool for rethook nodes */
        if (objpool_init(&rh->pool, num, size, GFP_KERNEL, rh,
  */
 void rethook_recycle(struct rethook_node *node)
 {
-       lockdep_assert_preemption_disabled();
+       rethook_handler_t handler;
 
-       if (likely(READ_ONCE(node->rethook->handler)))
+       handler = rethook_get_handler(node->rethook);
+       if (likely(handler))
                objpool_push(node, &node->rethook->pool);
        else
                call_rcu(&node->rcu, free_rethook_node_rcu);
  */
 struct rethook_node *rethook_try_get(struct rethook *rh)
 {
-       rethook_handler_t handler = READ_ONCE(rh->handler);
-
-       lockdep_assert_preemption_disabled();
+       rethook_handler_t handler = rethook_get_handler(rh);
 
        /* Check whether @rh is going to be freed. */
        if (unlikely(!handler))
                rhn = container_of(first, struct rethook_node, llist);
                if (WARN_ON_ONCE(rhn->frame != frame))
                        break;
-               handler = READ_ONCE(rhn->rethook->handler);
+               handler = rethook_get_handler(rhn->rethook);
                if (handler)
                        handler(rhn, rhn->rethook->data,
                                correct_ret_addr, regs);