/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | xdp_context_test_run.c | 21 opts.ctx_in = &ctx; in test_xdp_context_error() 33 struct xdp_md ctx_in, ctx_out; in test_xdp_context_test_run() local 50 opts.ctx_in = bad_ctx; in test_xdp_context_test_run() 58 opts.ctx_in = &ctx_in; in test_xdp_context_test_run() 59 opts.ctx_size_in = sizeof(ctx_in); in test_xdp_context_test_run() 60 memset(&ctx_in, 0, sizeof(ctx_in)); in test_xdp_context_test_run() 61 ctx_in.data_meta = 0; in test_xdp_context_test_run() 62 ctx_in.data = sizeof(__u32); in test_xdp_context_test_run() 63 ctx_in.data_end = ctx_in.data + sizeof(pkt_v4); in test_xdp_context_test_run()
|
D | dummy_st_ops.c | 32 .ctx_in = args, in test_dummy_init_ret_value() 58 .ctx_in = args, in test_dummy_init_ptr_arg() 104 .ctx_in = args, in test_dummy_multiple_args() 133 .ctx_in = args, in test_dummy_sleepable() 158 .ctx_in = args, in test_dummy_sleepable_reject_null()
|
D | xdp_do_redirect.c | 95 struct xdp_md ctx_in = { .data = sizeof(__u64), in test_xdp_do_redirect() local 100 .ctx_in = &ctx_in, in test_xdp_do_redirect() 101 .ctx_size_in = sizeof(ctx_in), in test_xdp_do_redirect() 206 ctx_in.ingress_ifindex = ifindex_src; in test_xdp_do_redirect()
|
D | raw_tp_test_run.c | 17 .ctx_in = args, in test_raw_tp_test_run() 46 opts.ctx_in = args; in test_raw_tp_test_run()
|
D | skb_helpers.c | 15 .ctx_in = &skb, in test_skb_helpers()
|
D | pro_epilogue.c | 25 topts.ctx_in = &args; in test_tailcall()
|
D | skb_load_bytes.c | 15 .ctx_in = &skb, in test_skb_load_bytes()
|
D | time_tai.c | 30 .ctx_in = &skb, in test_time_tai()
|
D | test_profiler.c | 16 test_attr.ctx_in = args; in sanity_run()
|
D | kfunc_call.c | 104 topts.ctx_in = &args; in verify_success() 170 topts.ctx_in = &args; in verify_fail()
|
D | syscall.c | 24 .ctx_in = &ctx, in test_syscall_load_prog()
|
D | skb_ctx.c | 26 .ctx_in = &skb, in test_skb_ctx()
|
D | dynptr.c | 107 .ctx_in = &skb, in verify_success()
|
D | test_ldsx_insn.c | 101 .ctx_in = &skb, in test_ctx_member_narrow_sign_ext()
|
D | kfree_skb.c | 60 .ctx_in = &skb, in serial_test_kfree_skb()
|
/linux-6.12.1/net/bpf/ |
D | bpf_dummy_struct_ops.c | 32 void __user *ctx_in; in dummy_ops_init_args() local 43 ctx_in = u64_to_user_ptr(kattr->test.ctx_in); in dummy_ops_init_args() 44 if (copy_from_user(args->args, ctx_in, size_in)) in dummy_ops_init_args()
|
D | test_run.c | 757 void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in); in bpf_prog_test_run_raw_tp() local 777 info.ctx = memdup_user(ctx_in, ctx_size_in); in bpf_prog_test_run_raw_tp() 813 void __user *data_in = u64_to_user_ptr(kattr->test.ctx_in); in bpf_ctx_init() 1536 void __user *ctx_in = u64_to_user_ptr(kattr->test.ctx_in); in bpf_prog_test_run_syscall() local 1554 ctx = memdup_user(ctx_in, ctx_size_in); in bpf_prog_test_run_syscall() 1568 if (copy_to_user(ctx_in, ctx, ctx_size_in)) in bpf_prog_test_run_syscall()
|
/linux-6.12.1/drivers/crypto/chelsio/ |
D | chcr_algo.h | 158 #define FILL_SEC_CPL_IVGEN_HDRLEN(last, more, ctx_in, mac, ivdrop, len) htonl( \ argument 164 SCMD_KEY_CTX_INLINE_V((ctx_in)) | \
|
/linux-6.12.1/tools/perf/util/ |
D | bpf_counter.h | 126 .ctx_in = NULL, in bperf_trigger_reading()
|
/linux-6.12.1/samples/hid/ |
D | hid_surface_dial.c | 96 .ctx_in = &args, in set_haptic()
|
/linux-6.12.1/tools/lib/bpf/ |
D | bpf.h | 472 const void *ctx_in; /* optional */ member 661 const void *ctx_in; /* optional */ member
|
D | skel_internal.h | 350 attr.test.ctx_in = (long) opts->ctx; in bpf_load_and_run()
|
/linux-6.12.1/tools/bpf/bpftool/Documentation/ |
D | bpftool-prog.rst | 38 …ROG* **data_in** *FILE* [**data_out** *FILE* [**data_size_out** *L*]] [**ctx_in** *FILE* [**ctx_ou… 176 bpftool prog run *PROG* data_in *FILE* [data_out *FILE* [data_size_out *L*]] [ctx_in *FILE* [ctx_ou… 184 is read from *FILE* passed with **ctx_in**. Again, "**-**" can be used to 201 them can take the **ctx_in**/**ctx_out** arguments. bpftool does not
|
/linux-6.12.1/tools/testing/selftests/hid/ |
D | hid_bpf.c | 407 .ctx_in = &args, in TEST_F() 453 .ctx_in = &args, in TEST_F() 502 .ctx_in = &args, in TEST_F()
|
/linux-6.12.1/tools/bpf/bpftool/ |
D | prog.c | 1274 void *ctx_in = NULL, *ctx_out = NULL; in do_run() local 1383 err = get_run_data(ctx_fname_in, &ctx_in, &test_attr.ctx_size_in); in do_run() 1387 if (ctx_in) { in do_run() 1398 test_attr.ctx_in = ctx_in; in do_run() 1437 free(ctx_in); in do_run()
|