Home
last modified time | relevance | path

Searched refs:ctx2 (Results 1 – 10 of 10) sorted by relevance

/linux-6.15/tools/testing/selftests/bpf/progs/
H A Dtest_global_func_ctx_args.c137 void *ctx2 __arg_ctx) in subprog_multi_ctx_tags()
144 bpf_get_stack(ctx2, stack, sizeof(stack), 0); in subprog_multi_ctx_tags()
H A Dverifier_iterating_callbacks.c220 struct num_context ctx2 = { .i = 0 }; in bpf_loop_iter_limit_nested() local
224 bpf_loop(1, iter_limit_level1_cb, &ctx2, 0); in bpf_loop_iter_limit_nested()
226 b = ctx2.i; in bpf_loop_iter_limit_nested()
/linux-6.15/crypto/
H A Dalgif_hash.c236 struct hash_ctx *ctx2; in hash_accept() local
261 ctx2 = ask2->private; in hash_accept()
262 ctx2->more = more; in hash_accept()
267 err = crypto_ahash_import(&ctx2->req, state); in hash_accept()
/linux-6.15/lib/crypto/mpi/
H A Dmpih-mul.c395 struct karatsuba_ctx *ctx2; in mpihelp_release_karatsuba_ctx() local
401 for (ctx = ctx->next; ctx; ctx = ctx2) { in mpihelp_release_karatsuba_ctx()
402 ctx2 = ctx->next; in mpihelp_release_karatsuba_ctx()
/linux-6.15/drivers/gpu/drm/ttm/tests/
H A Dttm_bo_test.c142 struct ww_acquire_ctx ctx1, ctx2; in ttm_bo_reserve_deadlock() local
156 bo2->base.resv->lock.ctx = &ctx2; in ttm_bo_reserve_deadlock()
157 ctx2 = ctx1; in ttm_bo_reserve_deadlock()
158 ctx2.stamp--; /* Make the context holding the lock younger */ in ttm_bo_reserve_deadlock()
/linux-6.15/arch/riscv/crypto/
H A Daes-riscv64-glue.c341 struct crypto_aes_ctx ctx2; member
351 riscv64_aes_setkey(&ctx->ctx2, key + keylen / 2, keylen / 2); in riscv64_aes_xts_setkey()
370 aes_encrypt_zvkned(&ctx->ctx2, req->iv, req->iv); in riscv64_aes_xts_crypt()
/linux-6.15/fs/nfs/
H A Dinternal.h320 const struct nfs_open_context *ctx2) in nfs_match_open_context() argument
322 return cred_fscmp(ctx1->cred, ctx2->cred) == 0 && ctx1->state == ctx2->state; in nfs_match_open_context()
/linux-6.15/io_uring/
H A Drsrc.c1135 static void lock_two_rings(struct io_ring_ctx *ctx1, struct io_ring_ctx *ctx2) in lock_two_rings() argument
1137 if (ctx1 > ctx2) in lock_two_rings()
1138 swap(ctx1, ctx2); in lock_two_rings()
1140 mutex_lock_nested(&ctx2->uring_lock, SINGLE_DEPTH_NESTING); in lock_two_rings()
/linux-6.15/kernel/events/
H A Dcore.c3479 struct perf_event_context *ctx2) in context_equiv() argument
3482 lockdep_assert_held(&ctx2->lock); in context_equiv()
3485 if (ctx1->pin_count || ctx2->pin_count) in context_equiv()
3489 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen) in context_equiv()
3493 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation) in context_equiv()
3500 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx && in context_equiv()
3501 ctx1->parent_gen == ctx2->parent_gen) in context_equiv()
/linux-6.15/tools/testing/selftests/bpf/prog_tests/
H A Dreg_bounds.c1183 const char *ctx1, const char *ctx2) in assert_range_eq() argument
1190 snappendf(sb, "MISMATCH %s.%s: ", ctx1, ctx2); in assert_range_eq()