Searched refs:register_fprobe (Results 1 – 5 of 5) sorted by relevance
/linux-6.1.9/include/linux/ |
D | fprobe.h | 57 int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter); 62 static inline int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter) in register_fprobe() function
|
/linux-6.1.9/Documentation/trace/ |
D | fprobe.rst | 24 the `struct fprobe` and pass it to `register_fprobe()`. 36 To enable the fprobe, call one of register_fprobe(), register_fprobe_ips(), and 40 The register_fprobe() enables a fprobe by function-name filters. 43 register_fprobe(&fp, "func*", "func2"); 80 after the register_fprobe() is called and before it returns. See 142 register_fprobe(&fprobe, "func*", NULL);
|
/linux-6.1.9/lib/ |
D | test_fprobe.c | 67 KUNIT_EXPECT_EQ(test, 0, register_fprobe(&fp_entry, "fprobe_selftest_target*", NULL)); in test_fprobe_entry() 92 KUNIT_EXPECT_EQ(test, 0, register_fprobe(&fp, "fprobe_selftest_target*", NULL)); in test_fprobe()
|
/linux-6.1.9/kernel/trace/ |
D | fprobe.c | 181 int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter) in register_fprobe() function 225 EXPORT_SYMBOL_GPL(register_fprobe);
|
/linux-6.1.9/samples/fprobe/ |
D | fprobe_example.c | 96 ret = register_fprobe(&sample_probe, symbol, in fprobe_init()
|