Searched refs:post_handler (Results 1 - 25 of 29) sorted by relevance

12

/linux-master/arch/riscv/kernel/probes/
H A Dftrace.c40 if (unlikely(p->post_handler)) {
42 p->post_handler(p, regs, 0);
49 * skip emulating post_handler.
H A Dkprobes.c241 if (cur->post_handler) {
242 /* post_handler can hit breakpoint and single step
245 cur->post_handler(cur, regs, 0);
/linux-master/arch/csky/kernel/probes/
H A Dftrace.c46 if (unlikely(p->post_handler)) {
48 p->post_handler(p, regs, 0);
54 * skip emulating post_handler.
H A Dkprobes.c264 if (cur->post_handler) {
265 /* post_handler can hit breakpoint and single step
268 cur->post_handler(cur, regs, 0);
/linux-master/arch/powerpc/kernel/
H A Dkprobes-ftrace.c51 if (unlikely(p->post_handler)) {
53 p->post_handler(p, regs, 0);
58 * skip emulating post_handler.
H A Dkprobes.c398 if (p->post_handler)
399 p->post_handler(p, regs, 0);
482 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
484 cur->post_handler(cur, regs, 0);
/linux-master/arch/x86/kernel/kprobes/
H A Dftrace.c48 if (unlikely(p->post_handler)) {
50 p->post_handler(p, regs, 0);
56 * skip emulating post_handler.
/linux-master/include/linux/
H A Dmmiotrace.h26 kmmio_post_handler_t post_handler; member in struct:kmmio_probe
/linux-master/arch/parisc/kernel/
H A Dkprobes.c158 if (p->post_handler)
159 p->post_handler(p, regs, 0);
H A Dftrace.c235 if (unlikely(p->post_handler)) {
237 p->post_handler(p, regs, 0);
/linux-master/arch/mips/kernel/
H A Dkprobes.c363 if (p->post_handler)
364 p->post_handler(p, regs, 0);
387 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
389 cur->post_handler(cur, regs, 0);
501 * kprobe_handler() that we don't want the post_handler
/linux-master/lib/
H A Dtest_kprobes.c58 .post_handler = kp_post_handler
119 .post_handler = kp_post_handler2
152 .post_handler = kp_post_handler,
/linux-master/samples/kprobes/
H A Dkprobe_example.c67 /* kprobe post_handler: called after the probed instruction is executed */
109 kp.post_handler = handler_post;
/linux-master/arch/s390/kernel/
H A Dftrace.c324 if (unlikely(p->post_handler)) {
326 p->post_handler(p, regs, 0);
H A Dkprobes.c414 if (kcb->kprobe_status != KPROBE_REENTER && p->post_handler) {
416 p->post_handler(p, regs, 0);
/linux-master/arch/loongarch/kernel/
H A Dftrace_dyn.c318 if (unlikely(p->post_handler)) {
320 p->post_handler(p, regs, 0);
327 * skip emulating post_handler.
H A Dkprobes.c143 * update the kcb status even if the cur->post_handler is
147 if (cur->post_handler)
148 cur->post_handler(cur, regs, 0);
/linux-master/kernel/
H A Dkprobes.c685 /* kprobes with 'post_handler' can not be optimized */
686 if (p->post_handler)
1103 bool ipmodify = (p->post_handler != NULL);
1133 bool ipmodify = (p->post_handler != NULL);
1214 if (kp->post_handler && likely(!kprobe_disabled(kp))) {
1216 kp->post_handler(kp, regs, flags);
1260 if (p->post_handler)
1264 if (p->post_handler && !ap->post_handler)
1265 ap->post_handler
[all...]
H A Dfail_function.c68 attr->kp.post_handler = fei_post_handler;
/linux-master/arch/arm/probes/kprobes/
H A Dcore.c305 if (p->post_handler) {
307 p->post_handler(p, regs, 0);
/linux-master/arch/arm64/kernel/probes/
H A Dkprobes.c265 if (cur->post_handler)
266 cur->post_handler(cur, regs, 0);
/linux-master/arch/sparc/kernel/
H A Dkprobes.c301 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
303 cur->post_handler(cur, regs, 0);
460 * kprobe_handler() that we don't want the post_handler
/linux-master/arch/arc/kernel/
H A Dkprobes.c266 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
268 cur->post_handler(cur, regs, 0);
389 * that we don't want the post_handler to run
/linux-master/arch/sh/kernel/
H A Dkprobes.c321 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
323 cur->post_handler(cur, regs, 0);
/linux-master/arch/x86/mm/
H A Dkmmio.c349 if (ctx->probe && ctx->probe->post_handler)
350 ctx->probe->post_handler(ctx->probe, condition, regs);

Completed in 213 milliseconds

12