Mathieu Desnoyers | 4a08975 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 1 | /* |
| 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 | */ |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 15 | static void probe_subsys_event(void *ignore, |
| 16 | struct inode *inode, struct file *file) |
Mathieu Desnoyers | 4a08975 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 17 | { |
| 18 | printk(KERN_INFO "Event is encountered with inode number %lu\n", |
| 19 | inode->i_ino); |
| 20 | } |
| 21 | |
Qinghuang Feng | 7ec7fb3 | 2009-01-06 14:40:52 -0800 | [diff] [blame] | 22 | static int __init tp_sample_trace_init(void) |
Mathieu Desnoyers | 4a08975 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 23 | { |
| 24 | int ret; |
| 25 | |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 26 | ret = register_trace_subsys_event(probe_subsys_event, NULL); |
Mathieu Desnoyers | 4a08975 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 27 | WARN_ON(ret); |
| 28 | |
| 29 | return 0; |
| 30 | } |
| 31 | |
| 32 | module_init(tp_sample_trace_init); |
| 33 | |
Qinghuang Feng | 7ec7fb3 | 2009-01-06 14:40:52 -0800 | [diff] [blame] | 34 | static void __exit tp_sample_trace_exit(void) |
Mathieu Desnoyers | 4a08975 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 35 | { |
Steven Rostedt | 38516ab | 2010-04-20 17:04:50 -0400 | [diff] [blame] | 36 | unregister_trace_subsys_event(probe_subsys_event, NULL); |
Mathieu Desnoyers | 2504ea5 | 2008-11-14 17:47:41 -0500 | [diff] [blame] | 37 | tracepoint_synchronize_unregister(); |
Mathieu Desnoyers | 4a08975 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | module_exit(tp_sample_trace_exit); |
| 41 | |
| 42 | MODULE_LICENSE("GPL"); |
| 43 | MODULE_AUTHOR("Mathieu Desnoyers"); |
| 44 | MODULE_DESCRIPTION("Tracepoint Probes Samples"); |