File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 23
23
24
24
struct perf_event * __percpu * sample_hbp ;
25
25
26
- static char ksym_name [KSYM_NAME_LEN ] = "pid_max " ;
26
+ static char ksym_name [KSYM_NAME_LEN ] = "jiffies " ;
27
27
module_param_string (ksym , ksym_name , KSYM_NAME_LEN , S_IRUGO );
28
28
MODULE_PARM_DESC (ksym , "Kernel symbol to monitor; this module will report any"
29
29
" write operations on the kernel symbol" );
@@ -41,9 +41,13 @@ static int __init hw_break_module_init(void)
41
41
{
42
42
int ret ;
43
43
struct perf_event_attr attr ;
44
+ void * addr = __symbol_get (ksym_name );
45
+
46
+ if (!addr )
47
+ return - ENXIO ;
44
48
45
49
hw_breakpoint_init (& attr );
46
- attr .bp_addr = kallsyms_lookup_name ( ksym_name ) ;
50
+ attr .bp_addr = ( unsigned long ) addr ;
47
51
attr .bp_len = HW_BREAKPOINT_LEN_4 ;
48
52
attr .bp_type = HW_BREAKPOINT_W ;
49
53
@@ -66,6 +70,7 @@ static int __init hw_break_module_init(void)
66
70
static void __exit hw_break_module_exit (void )
67
71
{
68
72
unregister_wide_hw_breakpoint (sample_hbp );
73
+ symbol_put (ksym_name );
69
74
printk (KERN_INFO "HW Breakpoint for %s write uninstalled\n" , ksym_name );
70
75
}
71
76
You can’t perform that action at this time.
0 commit comments