Merge branch 'sched/urgent'
[linux-2.6/x86.git] / samples / tracepoints / tracepoint-probe-sample2.c
blob9fcf990e5d4bd01c7095471105b2260028be1919
1 /*
2 * tracepoint-probe-sample2.c
4 * 2nd sample tracepoint probes.
5 */
7 #include <linux/module.h>
8 #include <linux/fs.h>
9 #include "tp-samples-trace.h"
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.
15 static void probe_subsys_event(void *ignore,
16 struct inode *inode, struct file *file)
18 printk(KERN_INFO "Event is encountered with inode number %lu\n",
19 inode->i_ino);
22 static int __init tp_sample_trace_init(void)
24 int ret;
26 ret = register_trace_subsys_event(probe_subsys_event, NULL);
27 WARN_ON(ret);
29 return 0;
32 module_init(tp_sample_trace_init);
34 static void __exit tp_sample_trace_exit(void)
36 unregister_trace_subsys_event(probe_subsys_event, NULL);
37 tracepoint_synchronize_unregister();
40 module_exit(tp_sample_trace_exit);
42 MODULE_LICENSE("GPL");
43 MODULE_AUTHOR("Mathieu Desnoyers");
44 MODULE_DESCRIPTION("Tracepoint Probes Samples");