Searched refs:rhn (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/kernel/trace/ |
D | rethook.c | 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() 239 struct rethook_node *rhn = NULL; in rethook_find_ret_addr() local 252 rhn = container_of(*cur, struct rethook_node, llist); in rethook_find_ret_addr() 253 } while (rhn->frame != frame); in rethook_find_ret_addr() 277 struct rethook_node *rhn; in rethook_trampoline_handler() local [all …]
|
/linux-6.1.9/kernel/ |
D | kprobes.c | 2113 struct rethook_node *rhn; in pre_handler_kretprobe() local 2115 rhn = rethook_try_get(rp->rh); in pre_handler_kretprobe() 2116 if (!rhn) { in pre_handler_kretprobe() 2121 ri = container_of(rhn, struct kretprobe_instance, node); in pre_handler_kretprobe() 2124 rethook_recycle(rhn); in pre_handler_kretprobe() 2126 rethook_hook(rhn, regs, kprobe_ftrace(p)); in pre_handler_kretprobe()
|