summaryrefslogtreecommitdiff
path: root/samples/bpf/tracex4.bpf.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2024-09-04 11:41:32 -1000
committerTejun Heo <tj@kernel.org>2024-09-04 11:41:32 -1000
commit649e980dadee36f961738d054627225542d547a2 (patch)
treea67f0dc4ea53f03c85f5e0648f83f3ff0e4877f7 /samples/bpf/tracex4.bpf.c
parenta4103eacc2ab408bb65e9902f0857b219fb489de (diff)
parent2ad6d23f465a4f851e3bcf6d74c315ce7b2c205b (diff)
Merge branch 'bpf/master' into for-6.12
Pull bpf/master to receive baebe9aaba1e ("bpf: allow passing struct bpf_iter_<type> as kfunc arguments") and related changes in preparation for the DSQ iterator patchset. Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'samples/bpf/tracex4.bpf.c')
-rw-r--r--samples/bpf/tracex4.bpf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/bpf/tracex4.bpf.c b/samples/bpf/tracex4.bpf.c
index ca826750901a..d786492fd926 100644
--- a/samples/bpf/tracex4.bpf.c
+++ b/samples/bpf/tracex4.bpf.c
@@ -33,13 +33,13 @@ int bpf_prog1(struct pt_regs *ctx)
return 0;
}
-SEC("kretprobe/kmem_cache_alloc_node")
+SEC("kretprobe/kmem_cache_alloc_node_noprof")
int bpf_prog2(struct pt_regs *ctx)
{
long ptr = PT_REGS_RC(ctx);
long ip = 0;
- /* get ip address of kmem_cache_alloc_node() caller */
+ /* get ip address of kmem_cache_alloc_node_noprof() caller */
BPF_KRETPROBE_READ_RET_IP(ip, ctx);
struct pair v = {