File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ TIME EVENT COMM PID PPID FILENAME/EXIT CODE
111
111
## uprobe
112
112
113
113
` uprobe ` is an example of dealing with user-space entry and exit (return) probes,
114
- ` uprobe ` and ` uretprobe ` in libbpf lingo. It attached ` uprobe ` and ` uretprobe `
114
+ ` uprobe ` and ` uretprobe ` , in libbpf lingo. It attached ` uprobe ` and ` uretprobe `
115
115
BPF programs to its own functions (` uprobed_add() ` and ` uprobed_sub() ` ) and logs input arguments
116
116
and return result, respectively, using ` bpf_printk() ` macro. The user-space
117
117
function is triggered once every second:
@@ -197,7 +197,7 @@ $ sudo cat /sys/kernel/debug/tracing/trace_pipe
197
197
## kprobe
198
198
199
199
` kprobe ` is an example of dealing with kernel-space entry and exit (return)
200
- probes, ` kprobe ` and ` kretprobe ` in libbpf lingo. It attaches ` kprobe ` and
200
+ probes, ` kprobe ` and ` kretprobe ` , in libbpf lingo. It attaches ` kprobe ` and
201
201
` kretprobe ` BPF programs to the ` do_unlinkat() ` function and logs the PID,
202
202
filename, and return result, respectively, using ` bpf_printk() ` macro.
203
203
You can’t perform that action at this time.
0 commit comments