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()
257 struct rethook_node *rhn = NULL; in rethook_find_ret_addr() local
270 rhn = container_of(*cur, struct rethook_node, llist); in rethook_find_ret_addr()
271 } while (rhn->frame != frame); in rethook_find_ret_addr()
295 struct rethook_node *rhn; in rethook_trampoline_handler() local
317 rhn = container_of(first, struct rethook_node, llist); in rethook_trampoline_handler()
318 if (WARN_ON_ONCE(rhn->frame != frame)) in rethook_trampoline_handler()
320 handler = rethook_get_handler(rhn->rethook); in rethook_trampoline_handler()
322 handler(rhn, rhn->rethook->data, regs); in rethook_trampoline_handler()
338 rhn = container_of(first, struct rethook_node, llist); in rethook_trampoline_handler()
340 rethook_recycle(rhn); in rethook_trampoline_handler()