Symbol: rethook
include/linux/kprobes.h
154
struct rethook *rh;
include/linux/kprobes.h
201
return (struct kretprobe *)ri->node.rethook->data;
include/linux/rethook.h
55
struct rethook *rethook;
include/linux/rethook.h
60
struct rethook *rethook_alloc(void *data, rethook_handler_t handler, int size, int num);
include/linux/rethook.h
61
void rethook_stop(struct rethook *rh);
include/linux/rethook.h
62
void rethook_free(struct rethook *rh);
include/linux/rethook.h
63
struct rethook_node *rethook_try_get(struct rethook *rh);
kernel/trace/rethook.c
103
struct rethook *rethook_alloc(void *data, rethook_handler_t handler,
kernel/trace/rethook.c
106
struct rethook *rh;
kernel/trace/rethook.c
111
rh = kzalloc_obj(struct rethook);
kernel/trace/rethook.c
130
struct rethook *rh = node->rethook;
kernel/trace/rethook.c
146
handler = rethook_get_handler(node->rethook);
kernel/trace/rethook.c
148
objpool_push(node, &node->rethook->pool);
kernel/trace/rethook.c
161
struct rethook_node *rethook_try_get(struct rethook *rh)
kernel/trace/rethook.c
310
handler = rethook_get_handler(rhn->rethook);
kernel/trace/rethook.c
312
handler(rhn, rhn->rethook->data,
kernel/trace/rethook.c
37
struct rethook *rh = container_of(head, struct rethook, rcu);
kernel/trace/rethook.c
49
void rethook_stop(struct rethook *rh)
kernel/trace/rethook.c
64
void rethook_free(struct rethook *rh)
kernel/trace/rethook.c
75
node->rethook = context;
kernel/trace/rethook.c
85
static inline rethook_handler_t rethook_get_handler(struct rethook *rh)