blob: be2a960573f174991fe26c4ccdfd5794bc61c988 [file] [log] [blame]
Mathieu Desnoyers4a089752008-07-18 12:16:16 -04001/*
2 * tracepoint-probe-sample2.c
3 *
4 * 2nd sample tracepoint probes.
5 */
6
7#include <linux/module.h>
8#include <linux/fs.h>
9#include "tp-samples-trace.h"
10
11/*
12 * Here the caller only guarantees locking for struct file and struct inode.
13 * Locking must therefore be done in the probe to use the dentry.
14 */
15static void probe_subsys_event(struct inode *inode, struct file *file)
16{
17 printk(KERN_INFO "Event is encountered with inode number %lu\n",
18 inode->i_ino);
19}
20
Qinghuang Feng7ec7fb32009-01-06 14:40:52 -080021static int __init tp_sample_trace_init(void)
Mathieu Desnoyers4a089752008-07-18 12:16:16 -040022{
23 int ret;
24
25 ret = register_trace_subsys_event(probe_subsys_event);
26 WARN_ON(ret);
27
28 return 0;
29}
30
31module_init(tp_sample_trace_init);
32
Qinghuang Feng7ec7fb32009-01-06 14:40:52 -080033static void __exit tp_sample_trace_exit(void)
Mathieu Desnoyers4a089752008-07-18 12:16:16 -040034{
35 unregister_trace_subsys_event(probe_subsys_event);
Mathieu Desnoyers2504ea52008-11-14 17:47:41 -050036 tracepoint_synchronize_unregister();
Mathieu Desnoyers4a089752008-07-18 12:16:16 -040037}
38
39module_exit(tp_sample_trace_exit);
40
41MODULE_LICENSE("GPL");
42MODULE_AUTHOR("Mathieu Desnoyers");
43MODULE_DESCRIPTION("Tracepoint Probes Samples");