Skip to content

Commit 1e1fb42

Browse files
seehearfeelrostedt
authored andcommitted
samples: Use KSYM_NAME_LEN for kprobes
It is better and enough to use KSYM_NAME_LEN for kprobes in samples, no need to define and use the other values. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Tiezhu Yang <[email protected]> Acked-by: Masami Hiramatsu (Google) <[email protected]> Signed-off-by: Steven Rostedt (Google) <[email protected]>
1 parent e3655df commit 1e1fb42

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

samples/kprobes/kprobe_example.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
#include <linux/module.h>
1717
#include <linux/kprobes.h>
1818

19-
#define MAX_SYMBOL_LEN 64
20-
static char symbol[MAX_SYMBOL_LEN] = "kernel_clone";
21-
module_param_string(symbol, symbol, sizeof(symbol), 0644);
19+
static char symbol[KSYM_NAME_LEN] = "kernel_clone";
20+
module_param_string(symbol, symbol, KSYM_NAME_LEN, 0644);
2221

2322
/* For each probe you need to allocate a kprobe structure */
2423
static struct kprobe kp = {

samples/kprobes/kretprobe_example.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@
2323
#include <linux/module.h>
2424
#include <linux/kprobes.h>
2525
#include <linux/ktime.h>
26-
#include <linux/limits.h>
2726
#include <linux/sched.h>
2827

29-
static char func_name[NAME_MAX] = "kernel_clone";
30-
module_param_string(func, func_name, NAME_MAX, S_IRUGO);
28+
static char func_name[KSYM_NAME_LEN] = "kernel_clone";
29+
module_param_string(func, func_name, KSYM_NAME_LEN, 0644);
3130
MODULE_PARM_DESC(func, "Function to kretprobe; this module will report the"
3231
" function's execution time");
3332

0 commit comments

Comments
 (0)