Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / tools / testing / selftests / bpf / test_stacktrace_map.c
blob76d85c5d08bdbc95af3f9e60c9a89f98e836f41e
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2018 Facebook
4 #include <linux/bpf.h>
5 #include "bpf_helpers.h"
7 #ifndef PERF_MAX_STACK_DEPTH
8 #define PERF_MAX_STACK_DEPTH 127
9 #endif
11 struct bpf_map_def SEC("maps") control_map = {
12 .type = BPF_MAP_TYPE_ARRAY,
13 .key_size = sizeof(__u32),
14 .value_size = sizeof(__u32),
15 .max_entries = 1,
18 struct bpf_map_def SEC("maps") stackid_hmap = {
19 .type = BPF_MAP_TYPE_HASH,
20 .key_size = sizeof(__u32),
21 .value_size = sizeof(__u32),
22 .max_entries = 10000,
25 struct bpf_map_def SEC("maps") stackmap = {
26 .type = BPF_MAP_TYPE_STACK_TRACE,
27 .key_size = sizeof(__u32),
28 .value_size = sizeof(__u64) * PERF_MAX_STACK_DEPTH,
29 .max_entries = 10000,
32 /* taken from /sys/kernel/debug/tracing/events/sched/sched_switch/format */
33 struct sched_switch_args {
34 unsigned long long pad;
35 char prev_comm[16];
36 int prev_pid;
37 int prev_prio;
38 long long prev_state;
39 char next_comm[16];
40 int next_pid;
41 int next_prio;
44 SEC("tracepoint/sched/sched_switch")
45 int oncpu(struct sched_switch_args *ctx)
47 __u32 key = 0, val = 0, *value_p;
49 value_p = bpf_map_lookup_elem(&control_map, &key);
50 if (value_p && *value_p)
51 return 0; /* skip if non-zero *value_p */
53 /* The size of stackmap and stackid_hmap should be the same */
54 key = bpf_get_stackid(ctx, &stackmap, 0);
55 if ((int)key >= 0)
56 bpf_map_update_elem(&stackid_hmap, &key, &val, 0);
58 return 0;
61 char _license[] SEC("license") = "GPL";
62 __u32 _version SEC("version") = 1; /* ignored by tracepoints, required by libbpf.a */