Lines Matching refs:rethook
36 rh = rethook_try_get(fp->rethook); in __fprobe_handler()
193 fp->rethook = NULL; in fprobe_init_rethook()
208 fp->rethook = rethook_alloc((void *)fp, fprobe_exit_handler, size, num); in fprobe_init_rethook()
209 if (IS_ERR(fp->rethook)) in fprobe_init_rethook()
210 return PTR_ERR(fp->rethook); in fprobe_init_rethook()
217 if (!IS_ERR_OR_NULL(fp->rethook)) { in fprobe_fail_cleanup()
219 rethook_free(fp->rethook); in fprobe_fail_cleanup()
220 fp->rethook = NULL; in fprobe_fail_cleanup()
372 if (!IS_ERR_OR_NULL(fp->rethook)) in unregister_fprobe()
373 rethook_stop(fp->rethook); in unregister_fprobe()
379 if (!IS_ERR_OR_NULL(fp->rethook)) in unregister_fprobe()
380 rethook_free(fp->rethook); in unregister_fprobe()