| 
									
										
										
										
											2008-07-18 12:16:16 -04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * tracepoint-probe-sample2.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 2nd sample tracepoint probes. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/fs.h>
 | 
					
						
							|  |  |  | #include "tp-samples-trace.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Here the caller only guarantees locking for struct file and struct inode. | 
					
						
							|  |  |  |  * Locking must therefore be done in the probe to use the dentry. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void probe_subsys_event(struct inode *inode, struct file *file) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	printk(KERN_INFO "Event is encountered with inode number %lu\n", | 
					
						
							|  |  |  | 		inode->i_ino); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-06 14:40:52 -08:00
										 |  |  | static int __init tp_sample_trace_init(void) | 
					
						
							| 
									
										
										
										
											2008-07-18 12:16:16 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = register_trace_subsys_event(probe_subsys_event); | 
					
						
							|  |  |  | 	WARN_ON(ret); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(tp_sample_trace_init); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-06 14:40:52 -08:00
										 |  |  | static void __exit tp_sample_trace_exit(void) | 
					
						
							| 
									
										
										
										
											2008-07-18 12:16:16 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	unregister_trace_subsys_event(probe_subsys_event); | 
					
						
							| 
									
										
										
										
											2008-11-14 17:47:41 -05:00
										 |  |  | 	tracepoint_synchronize_unregister(); | 
					
						
							| 
									
										
										
										
											2008-07-18 12:16:16 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_exit(tp_sample_trace_exit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); | 
					
						
							|  |  |  | MODULE_AUTHOR("Mathieu Desnoyers"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("Tracepoint Probes Samples"); |