Linux Kernel
3.7.1
|
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/kallsyms.h>
#include <linux/perf_event.h>
#include <linux/hw_breakpoint.h>
Go to the source code of this file.
Functions | |
module_param_string (ksym, ksym_name, KSYM_NAME_LEN, S_IRUGO) | |
MODULE_PARM_DESC (ksym,"Kernel symbol to monitor; this module will report any"" write operations on the kernel symbol") | |
module_init (hw_break_module_init) | |
module_exit (hw_break_module_exit) | |
MODULE_LICENSE ("GPL") | |
MODULE_AUTHOR ("K.Prasad") | |
MODULE_DESCRIPTION ("ksym breakpoint") | |
Variables | |
struct perf_event *__percpu * | sample_hbp |
MODULE_AUTHOR | ( | "K.Prasad" | ) |
MODULE_DESCRIPTION | ( | "ksym breakpoint" | ) |
module_exit | ( | hw_break_module_exit | ) |
module_init | ( | hw_break_module_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |
module_param_string | ( | ksym | , |
ksym_name | , | ||
KSYM_NAME_LEN | , | ||
S_IRUGO | |||
) |
MODULE_PARM_DESC | ( | ksym | , |
"Kernel symbol to monitor; this module will report any"" write operations on the kernel symbol" | |||
) |
struct perf_event* __percpu* sample_hbp |
Definition at line 37 of file data_breakpoint.c.