2 * tracepoint-probe-sample.c
4 * sample tracepoint probes.
7 #include <linux/module.h>
8 #include <linux/file.h>
9 #include <linux/dcache.h>
10 #include "tp-samples-trace.h"
13 * Here the caller only guarantees locking for struct file and struct inode.
14 * Locking must therefore be done in the probe to use the dentry.
16 static void probe_subsys_event(struct inode
*inode
, struct file
*file
)
18 path_get(&file
->f_path
);
19 dget(file
->f_path
.dentry
);
20 printk(KERN_INFO
"Event is encountered with filename %s\n",
21 file
->f_path
.dentry
->d_name
.name
);
22 dput(file
->f_path
.dentry
);
23 path_put(&file
->f_path
);
26 static void probe_subsys_eventb(void)
28 printk(KERN_INFO
"Event B is encountered\n");
31 int __init
tp_sample_trace_init(void)
35 ret
= register_trace_subsys_event(probe_subsys_event
);
37 ret
= register_trace_subsys_eventb(probe_subsys_eventb
);
43 module_init(tp_sample_trace_init
);
45 void __exit
tp_sample_trace_exit(void)
47 unregister_trace_subsys_eventb(probe_subsys_eventb
);
48 unregister_trace_subsys_event(probe_subsys_event
);
51 module_exit(tp_sample_trace_exit
);
53 MODULE_LICENSE("GPL");
54 MODULE_AUTHOR("Mathieu Desnoyers");
55 MODULE_DESCRIPTION("Tracepoint Probes Samples");