Lines Matching refs:rhn
23 struct rethook_node *rhn; in rethook_flush_task() local
28 rhn = container_of(node, struct rethook_node, llist); in rethook_flush_task()
31 rethook_recycle(rhn); in rethook_flush_task()
39 struct rethook_node *rhn; in rethook_free_rcu() local
45 rhn = container_of(node, struct rethook_node, freelist); in rethook_free_rcu()
47 kfree(rhn); in rethook_free_rcu()
252 struct rethook_node *rhn = NULL; in rethook_find_ret_addr() local
265 rhn = container_of(*cur, struct rethook_node, llist); in rethook_find_ret_addr()
266 } while (rhn->frame != frame); in rethook_find_ret_addr()
290 struct rethook_node *rhn; in rethook_trampoline_handler() local
312 rhn = container_of(first, struct rethook_node, llist); in rethook_trampoline_handler()
313 if (WARN_ON_ONCE(rhn->frame != frame)) in rethook_trampoline_handler()
315 handler = READ_ONCE(rhn->rethook->handler); in rethook_trampoline_handler()
317 handler(rhn, rhn->rethook->data, in rethook_trampoline_handler()
334 rhn = container_of(first, struct rethook_node, llist); in rethook_trampoline_handler()
336 rethook_recycle(rhn); in rethook_trampoline_handler()