tools/testing/selftests/bpf/progs/struct_ops_assoc_in_timer.c
Source file repositories/reference/linux-study-clean/tools/testing/selftests/bpf/progs/struct_ops_assoc_in_timer.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/bpf/progs/struct_ops_assoc_in_timer.c- Extension
.c- Size
- 1392 bytes
- Lines
- 78
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
vmlinux.hbpf/bpf_tracing.hbpf_misc.h../test_kmods/bpf_testmod.h../test_kmods/bpf_testmod_kfunc.h
Detected Declarations
struct elemfunction timer_cbfunction BPF_PROGfunction syscall_prog
Annotated Snippet
struct elem {
struct bpf_timer timer;
};
struct {
__uint(type, BPF_MAP_TYPE_ARRAY);
__uint(max_entries, 1);
__type(key, int);
__type(value, struct elem);
} array_map SEC(".maps");
#define MAP_MAGIC 1234
int recur;
int test_err;
int timer_ns;
int timer_test_1_ret;
int timer_cb_run;
__noinline static int timer_cb(void *map, int *key, struct bpf_timer *timer)
{
struct st_ops_args args = {};
recur++;
timer_test_1_ret = bpf_kfunc_multi_st_ops_test_1_assoc(&args);
recur--;
timer_cb_run++;
return 0;
}
SEC("struct_ops")
int BPF_PROG(test_1, struct st_ops_args *args)
{
struct bpf_timer *timer;
int key = 0;
if (!recur) {
timer = bpf_map_lookup_elem(&array_map, &key);
if (!timer)
return 0;
bpf_timer_init(timer, &array_map, 1);
bpf_timer_set_callback(timer, timer_cb);
bpf_timer_start(timer, timer_ns, 0);
}
return MAP_MAGIC;
}
SEC("syscall")
int syscall_prog(void *ctx)
{
struct st_ops_args args = {};
int ret;
ret = bpf_kfunc_multi_st_ops_test_1_assoc(&args);
if (ret != MAP_MAGIC)
test_err++;
return 0;
}
SEC(".struct_ops.link")
struct bpf_testmod_multi_st_ops st_ops_map = {
.test_1 = (void *)test_1,
};
Annotation
- Immediate include surface: `vmlinux.h`, `bpf/bpf_tracing.h`, `bpf_misc.h`, `../test_kmods/bpf_testmod.h`, `../test_kmods/bpf_testmod_kfunc.h`.
- Detected declarations: `struct elem`, `function timer_cb`, `function BPF_PROG`, `function syscall_prog`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.