Symbol: rb_ctx
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
105
ASSERT_TRUE(rb_ctx.found, "found_test_ws_in_rb");
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
106
ASSERT_GT(rb_ctx.active_time_ns, 0, "active_time_gt_0");
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
107
ASSERT_GT(rb_ctx.total_time_ns, 0, "total_time_gt_0");
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
110
unlock_ws(rb_ctx.name);
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
49
struct rb_ctx *rb_ctx = ctx;
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
52
if (strcmp(e->name, rb_ctx->name) == 0) {
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
53
rb_ctx->found = true;
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
54
rb_ctx->active_time_ns = e->active_time_ns;
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
55
rb_ctx->total_time_ns = e->total_time_ns;
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
81
struct rb_ctx rb_ctx = {
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
91
rb = ring_buffer__new(bpf_map__fd(skel->maps.rb), process_sample, &rb_ctx, NULL);
tools/testing/selftests/bpf/prog_tests/wakeup_source.c
96
if (!ASSERT_OK(lock_ws(rb_ctx.name), "lock_ws"))
tools/testing/selftests/bpf/progs/verifier_map_in_map.c
263
static __always_inline struct rb_ctx __rb_event_reserve(__u32 sz)
tools/testing/selftests/bpf/progs/verifier_map_in_map.c
265
struct rb_ctx rb_ctx = {};
tools/testing/selftests/bpf/progs/verifier_map_in_map.c
272
return rb_ctx;
tools/testing/selftests/bpf/progs/verifier_map_in_map.c
274
rb_ctx.rb = rb;
tools/testing/selftests/bpf/progs/verifier_map_in_map.c
275
bpf_ringbuf_reserve_dynptr(rb, sz, 0, &rb_ctx.dptr);
tools/testing/selftests/bpf/progs/verifier_map_in_map.c
277
return rb_ctx;
tools/testing/selftests/bpf/progs/verifier_map_in_map.c
280
static __noinline void __rb_event_submit(struct rb_ctx *ctx)
tools/testing/selftests/bpf/progs/verifier_map_in_map.c
295
struct rb_ctx event_ctx = __rb_event_reserve(256);