/kernel/linux/linux-5.10/drivers/crypto/rockchip/ |
H A D | rk3288_crypto.c | 98 static int rk_crypto_register(struct rk_crypto_info *crypto_info) in rk_crypto_register() argument 104 rk_cipher_algs[i]->dev = crypto_info; in rk_crypto_register() 140 struct rk_crypto_info *crypto_info = data; in rk_crypto_action() local 142 reset_control_assert(crypto_info->rst); in rk_crypto_action() 154 struct rk_crypto_info *crypto_info; in rk_crypto_probe() local 157 crypto_info = devm_kzalloc(&pdev->dev, in rk_crypto_probe() 158 sizeof(*crypto_info), GFP_KERNEL); in rk_crypto_probe() 159 if (!crypto_info) { in rk_crypto_probe() 164 crypto_info->rst = devm_reset_control_get(dev, "crypto-rst"); in rk_crypto_probe() 165 if (IS_ERR(crypto_info in rk_crypto_probe() [all...] |
/kernel/linux/linux-6.6/drivers/crypto/rockchip/ |
H A D | rk3288_crypto.c | 236 static void register_debugfs(struct rk_crypto_info *crypto_info) in register_debugfs() argument 252 static int rk_crypto_register(struct rk_crypto_info *crypto_info) in rk_crypto_register() argument 258 rk_cipher_algs[i]->dev = crypto_info; in rk_crypto_register() 261 dev_info(crypto_info->dev, "Register %s as %s\n", in rk_crypto_register() 267 dev_info(crypto_info->dev, "Register %s as %s\n", in rk_crypto_register() 273 dev_err(crypto_info->dev, "unknown algorithm\n"); in rk_crypto_register() 319 struct rk_crypto_info *crypto_info, *first; in rk_crypto_probe() local 322 crypto_info = devm_kzalloc(&pdev->dev, in rk_crypto_probe() 323 sizeof(*crypto_info), GFP_KERNEL); in rk_crypto_probe() 324 if (!crypto_info) { in rk_crypto_probe() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ |
H A D | ktls_txrx.c | 24 union mlx5e_crypto_info *crypto_info, in fill_static_params() 35 switch (crypto_info->crypto_info.cipher_type) { in fill_static_params() 38 &crypto_info->crypto_info_128; in fill_static_params() 45 &crypto_info->crypto_info_256; in fill_static_params() 52 crypto_info->crypto_info.cipher_type); in fill_static_params() 76 union mlx5e_crypto_info *crypto_info, in mlx5e_ktls_build_static_params() 97 fill_static_params(&wqe->params, crypto_info, key_id, resync_tcp_sn); in mlx5e_ktls_build_static_params() 23 fill_static_params(struct mlx5_wqe_tls_static_params_seg *params, union mlx5e_crypto_info *crypto_info, u32 key_id, u32 resync_tcp_sn) fill_static_params() argument 74 mlx5e_ktls_build_static_params(struct mlx5e_set_tls_static_params_wqe *wqe, u16 pc, u32 sqn, union mlx5e_crypto_info *crypto_info, u32 tis_tir_num, u32 key_id, u32 resync_tcp_sn, bool fence, enum tls_offload_ctx_dir direction) mlx5e_ktls_build_static_params() argument
|
H A D | ktls.c | 13 struct tls_crypto_info *crypto_info) in mlx5_ktls_create_key() 18 switch (crypto_info->cipher_type) { in mlx5_ktls_create_key() 21 (struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5_ktls_create_key() 29 (struct tls12_crypto_info_aes_gcm_256 *)crypto_info; in mlx5_ktls_create_key() 50 struct tls_crypto_info *crypto_info, in mlx5e_ktls_add() 57 if (!mlx5e_ktls_type_check(mdev, crypto_info)) in mlx5e_ktls_add() 61 err = mlx5e_ktls_add_tx(netdev, sk, crypto_info, start_offload_tcp_sn); in mlx5e_ktls_add() 63 err = mlx5e_ktls_add_rx(netdev, sk, crypto_info, start_offload_tcp_sn); in mlx5e_ktls_add() 12 mlx5_ktls_create_key(struct mlx5_crypto_dek_pool *dek_pool, struct tls_crypto_info *crypto_info) mlx5_ktls_create_key() argument 48 mlx5e_ktls_add(struct net_device *netdev, struct sock *sk, enum tls_offload_ctx_dir direction, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) mlx5e_ktls_add() argument
|
H A D | ktls.h | 16 struct tls_crypto_info *crypto_info); 36 struct tls_crypto_info *crypto_info) in mlx5e_ktls_type_check() 38 switch (crypto_info->cipher_type) { in mlx5e_ktls_type_check() 40 if (crypto_info->version == TLS_1_2_VERSION) in mlx5e_ktls_type_check() 44 if (crypto_info->version == TLS_1_2_VERSION) in mlx5e_ktls_type_check() 35 mlx5e_ktls_type_check(struct mlx5_core_dev *mdev, struct tls_crypto_info *crypto_info) mlx5e_ktls_type_check() argument
|
H A D | ktls_utils.h | 23 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn); 26 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn); 31 struct tls_crypto_info crypto_info; member 81 union mlx5e_crypto_info *crypto_info,
|
H A D | ktls_tx.c | 97 union mlx5e_crypto_info crypto_info; member 455 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) in mlx5e_ktls_add_tx() 472 switch (crypto_info->cipher_type) { in mlx5e_ktls_add_tx() 474 priv_tx->crypto_info.crypto_info_128 = in mlx5e_ktls_add_tx() 475 *(struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5e_ktls_add_tx() 478 priv_tx->crypto_info.crypto_info_256 = in mlx5e_ktls_add_tx() 479 *(struct tls12_crypto_info_aes_gcm_256 *)crypto_info; in mlx5e_ktls_add_tx() 483 crypto_info->cipher_type); in mlx5e_ktls_add_tx() 488 dek = mlx5_ktls_create_key(priv->tls->dek_pool, crypto_info); in mlx5e_ktls_add_tx() 559 mlx5e_ktls_build_static_params(wqe, sq->pc, sq->sqn, &priv_tx->crypto_info, in post_static_params() 454 mlx5e_ktls_add_tx(struct net_device *netdev, struct sock *sk, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) mlx5e_ktls_add_tx() argument [all...] |
H A D | ktls_rx.c | 46 union mlx5e_crypto_info crypto_info; member 149 mlx5e_ktls_build_static_params(wqe, sq->pc, sq->sqn, &priv_rx->crypto_info, in post_static_params() 376 switch (priv_rx->crypto_info.crypto_info.cipher_type) { in resync_handle_seq_match() 379 &priv_rx->crypto_info.crypto_info_128; in resync_handle_seq_match() 387 &priv_rx->crypto_info.crypto_info_256; in resync_handle_seq_match() 395 priv_rx->crypto_info.crypto_info.cipher_type); in resync_handle_seq_match() 608 struct tls_crypto_info *crypto_info, in mlx5e_ktls_add_rx() 624 switch (crypto_info in mlx5e_ktls_add_rx() 607 mlx5e_ktls_add_rx(struct net_device *netdev, struct sock *sk, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) mlx5e_ktls_add_rx() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/accel/ |
H A D | tls.h | 42 struct tls_crypto_info *crypto_info, 69 struct tls_crypto_info *crypto_info) in mlx5e_ktls_type_check() 71 switch (crypto_info->cipher_type) { in mlx5e_ktls_type_check() 73 if (crypto_info->version == TLS_1_2_VERSION) in mlx5e_ktls_type_check() 89 struct tls_crypto_info *crypto_info, in mlx5_ktls_create_key() 98 struct tls_crypto_info *crypto_info) { return false; } in mlx5e_ktls_type_check() 124 struct tls_crypto_info *crypto_info, 140 struct tls_crypto_info *crypto_info, in mlx5_accel_tls_add_flow() 68 mlx5e_ktls_type_check(struct mlx5_core_dev *mdev, struct tls_crypto_info *crypto_info) mlx5e_ktls_type_check() argument 88 mlx5_ktls_create_key(struct mlx5_core_dev *mdev, struct tls_crypto_info *crypto_info, u32 *p_key_id) mlx5_ktls_create_key() argument 97 mlx5e_ktls_type_check(struct mlx5_core_dev *mdev, struct tls_crypto_info *crypto_info) mlx5e_ktls_type_check() argument 139 mlx5_accel_tls_add_flow(struct mlx5_core_dev *mdev, void *flow, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn, u32 *p_swid, bool direction_sx) mlx5_accel_tls_add_flow() argument
|
H A D | tls.c | 44 struct tls_crypto_info *crypto_info, in mlx5_accel_tls_add_flow() 48 return mlx5_fpga_tls_add_flow(mdev, flow, crypto_info, in mlx5_accel_tls_add_flow() 89 struct tls_crypto_info *crypto_info, in mlx5_ktls_create_key() 95 switch (crypto_info->cipher_type) { in mlx5_ktls_create_key() 98 (struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5_ktls_create_key() 106 (struct tls12_crypto_info_aes_gcm_256 *)crypto_info; in mlx5_ktls_create_key() 43 mlx5_accel_tls_add_flow(struct mlx5_core_dev *mdev, void *flow, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn, u32 *p_swid, bool direction_sx) mlx5_accel_tls_add_flow() argument 88 mlx5_ktls_create_key(struct mlx5_core_dev *mdev, struct tls_crypto_info *crypto_info, u32 *p_key_id) mlx5_ktls_create_key() argument
|
/kernel/linux/linux-5.10/net/tls/ |
H A D | tls_main.c | 341 struct tls_crypto_info *crypto_info; in do_tls_getsockopt_conf() local 348 if (!optval || (len < sizeof(*crypto_info))) { in do_tls_getsockopt_conf() 360 crypto_info = &ctx->crypto_send.info; in do_tls_getsockopt_conf() 363 crypto_info = &ctx->crypto_recv.info; in do_tls_getsockopt_conf() 367 if (!TLS_CRYPTO_INFO_READY(crypto_info)) { in do_tls_getsockopt_conf() 372 if (len == sizeof(*crypto_info)) { in do_tls_getsockopt_conf() 373 if (copy_to_user(optval, crypto_info, sizeof(*crypto_info))) in do_tls_getsockopt_conf() 378 switch (crypto_info->cipher_type) { in do_tls_getsockopt_conf() 382 container_of(crypto_info, in do_tls_getsockopt_conf() 469 struct tls_crypto_info *crypto_info; do_tls_setsockopt_conf() local [all...] |
H A D | tls_device.c | 1022 struct tls_crypto_info *crypto_info; in tls_set_device_offload() local 1045 crypto_info = &ctx->crypto_send.info; in tls_set_device_offload() 1046 if (crypto_info->version != TLS_1_2_VERSION) { in tls_set_device_offload() 1051 switch (crypto_info->cipher_type) { in tls_set_device_offload() 1056 iv = ((struct tls12_crypto_info_aes_gcm_128 *)crypto_info)->iv; in tls_set_device_offload() 1059 ((struct tls12_crypto_info_aes_gcm_128 *)crypto_info)->rec_seq; in tls_set_device_offload() 1072 prot->version = crypto_info->version; in tls_set_device_offload() 1073 prot->cipher_type = crypto_info->cipher_type; in tls_set_device_offload() 1094 rc = tls_sw_fallback_init(sk, offload_ctx, crypto_info); in tls_set_device_offload()
|
/kernel/linux/linux-6.6/net/tls/ |
H A D | tls_main.c | 75 .crypto_info = sizeof(struct ci) 444 struct tls_crypto_info *crypto_info; in do_tls_getsockopt_conf() local 451 if (!optval || (len < sizeof(*crypto_info))) { in do_tls_getsockopt_conf() 463 crypto_info = &ctx->crypto_send.info; in do_tls_getsockopt_conf() 466 crypto_info = &ctx->crypto_recv.info; in do_tls_getsockopt_conf() 470 if (!TLS_CRYPTO_INFO_READY(crypto_info)) { in do_tls_getsockopt_conf() 475 if (len == sizeof(*crypto_info)) { in do_tls_getsockopt_conf() 476 if (copy_to_user(optval, crypto_info, sizeof(*crypto_info))) in do_tls_getsockopt_conf() 481 cipher_desc = get_cipher_desc(crypto_info in do_tls_getsockopt_conf() 591 struct tls_crypto_info *crypto_info; do_tls_setsockopt_conf() local [all...] |
H A D | tls.h | 67 size_t crypto_info; member 82 static inline char *crypto_info_iv(struct tls_crypto_info *crypto_info, in crypto_info_iv() argument 85 return (char *)crypto_info + cipher_desc->iv_offset; in crypto_info_iv() 88 static inline char *crypto_info_key(struct tls_crypto_info *crypto_info, in crypto_info_key() argument 91 return (char *)crypto_info + cipher_desc->key_offset; in crypto_info_key() 94 static inline char *crypto_info_salt(struct tls_crypto_info *crypto_info, in crypto_info_salt() argument 97 return (char *)crypto_info + cipher_desc->salt_offset; in crypto_info_salt() 100 static inline char *crypto_info_rec_seq(struct tls_crypto_info *crypto_info, in crypto_info_rec_seq() argument 103 return (char *)crypto_info + cipher_desc->rec_seq_offset; in crypto_info_rec_seq() 179 struct tls_crypto_info *crypto_info); [all...] |
H A D | tls_device.c | 1052 struct tls_crypto_info *crypto_info; in tls_set_device_offload() local 1076 crypto_info = &ctx->crypto_send.info; in tls_set_device_offload() 1077 if (crypto_info->version != TLS_1_2_VERSION) { in tls_set_device_offload() 1082 cipher_desc = get_cipher_desc(crypto_info->cipher_type); in tls_set_device_offload() 1088 iv = crypto_info_iv(crypto_info, cipher_desc); in tls_set_device_offload() 1089 rec_seq = crypto_info_rec_seq(crypto_info, cipher_desc); in tls_set_device_offload() 1091 prot->version = crypto_info->version; in tls_set_device_offload() 1092 prot->cipher_type = crypto_info->cipher_type; in tls_set_device_offload() 1125 rc = tls_sw_fallback_init(sk, offload_ctx, crypto_info); in tls_set_device_offload()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/inline_crypto/chtls/ |
H A D | chtls_main.c | 470 struct tls_crypto_info crypto_info = { 0 }; in do_chtls_getsockopt() local 472 crypto_info.version = TLS_1_2_VERSION; in do_chtls_getsockopt() 473 if (copy_to_user(optval, &crypto_info, sizeof(struct tls_crypto_info))) in do_chtls_getsockopt() 493 struct tls_crypto_info *crypto_info, tmp_crypto_info; in do_chtls_setsockopt() local 501 if (sockptr_is_null(optval) || optlen < sizeof(*crypto_info)) { in do_chtls_setsockopt() 506 rc = copy_from_sockptr(&tmp_crypto_info, optval, sizeof(*crypto_info)); in do_chtls_setsockopt() 518 crypto_info = (struct tls_crypto_info *)&csk->tlshws.crypto_info; in do_chtls_setsockopt() 526 crypto_info[0] = tmp_crypto_info; in do_chtls_setsockopt() 528 rc = copy_from_sockptr_offset((char *)crypto_info in do_chtls_setsockopt() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/chelsio/inline_crypto/chtls/ |
H A D | chtls_main.c | 470 struct tls_crypto_info crypto_info = { 0 }; in do_chtls_getsockopt() local 472 crypto_info.version = TLS_1_2_VERSION; in do_chtls_getsockopt() 473 if (copy_to_user(optval, &crypto_info, sizeof(struct tls_crypto_info))) in do_chtls_getsockopt() 493 struct tls_crypto_info *crypto_info, tmp_crypto_info; in do_chtls_setsockopt() local 501 if (sockptr_is_null(optval) || optlen < sizeof(*crypto_info)) { in do_chtls_setsockopt() 506 rc = copy_from_sockptr(&tmp_crypto_info, optval, sizeof(*crypto_info)); in do_chtls_setsockopt() 518 crypto_info = (struct tls_crypto_info *)&csk->tlshws.crypto_info; in do_chtls_setsockopt() 526 crypto_info[0] = tmp_crypto_info; in do_chtls_setsockopt() 528 rc = copy_from_sockptr_offset((char *)crypto_info in do_chtls_setsockopt() [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ |
H A D | ktls.c | 11 struct tls_crypto_info *crypto_info, in mlx5e_ktls_add() 18 if (!mlx5e_ktls_type_check(mdev, crypto_info)) in mlx5e_ktls_add() 22 err = mlx5e_ktls_add_tx(netdev, sk, crypto_info, start_offload_tcp_sn); in mlx5e_ktls_add() 24 err = mlx5e_ktls_add_rx(netdev, sk, crypto_info, start_offload_tcp_sn); in mlx5e_ktls_add() 9 mlx5e_ktls_add(struct net_device *netdev, struct sock *sk, enum tls_offload_ctx_dir direction, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) mlx5e_ktls_add() argument
|
H A D | ktls_tx.c | 52 struct tls12_crypto_info_aes_gcm_128 crypto_info; member 81 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) in mlx5e_ktls_add_tx() 97 err = mlx5_ktls_create_key(mdev, crypto_info, &priv_tx->key_id); in mlx5e_ktls_add_tx() 102 priv_tx->crypto_info = in mlx5e_ktls_add_tx() 103 *(struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5e_ktls_add_tx() 172 mlx5e_ktls_build_static_params(wqe, sq->pc, sq->sqn, &priv_tx->crypto_info, in post_static_params() 282 struct tls12_crypto_info_aes_gcm_128 *info = &priv_tx->crypto_info; in tx_post_resync_params() 80 mlx5e_ktls_add_tx(struct net_device *netdev, struct sock *sk, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) mlx5e_ktls_add_tx() argument
|
H A D | ktls_utils.h | 24 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn); 27 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn);
|
H A D | ktls_rx.c | 46 struct tls12_crypto_info_aes_gcm_128 crypto_info; member 149 mlx5e_ktls_build_static_params(wqe, sq->pc, sq->sqn, &priv_rx->crypto_info, in post_static_params() 367 struct tls12_crypto_info_aes_gcm_128 *info = &priv_rx->crypto_info; in resync_handle_seq_match() 582 struct tls_crypto_info *crypto_info, in mlx5e_ktls_add_rx() 600 err = mlx5_ktls_create_key(mdev, crypto_info, &priv_rx->key_id); in mlx5e_ktls_add_rx() 604 priv_rx->crypto_info = in mlx5e_ktls_add_rx() 605 *(struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5e_ktls_add_rx() 581 mlx5e_ktls_add_rx(struct net_device *netdev, struct sock *sk, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) mlx5e_ktls_add_rx() argument
|
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/fpga/ |
H A D | tls.c | 514 struct tls12_crypto_info_aes_gcm_128 *crypto_info = in mlx5_fpga_tls_set_aes_gcm128_ctx() local 517 memcpy(MLX5_ADDR_OF(tls_cmd, cmd, tls_rcd_sn), crypto_info->rec_seq, in mlx5_fpga_tls_set_aes_gcm128_ctx() 521 crypto_info->salt, TLS_CIPHER_AES_GCM_128_SALT_SIZE); in mlx5_fpga_tls_set_aes_gcm128_ctx() 523 crypto_info->key, TLS_CIPHER_AES_GCM_128_KEY_SIZE); in mlx5_fpga_tls_set_aes_gcm128_ctx() 528 crypto_info->key, TLS_CIPHER_AES_GCM_128_KEY_SIZE); in mlx5_fpga_tls_set_aes_gcm128_ctx() 534 struct tls_crypto_info *crypto_info) in mlx5_fpga_tls_set_key_material() 538 switch (crypto_info->cipher_type) { in mlx5_fpga_tls_set_key_material() 542 mlx5_fpga_tls_set_aes_gcm128_ctx(cmd, crypto_info, &rcd_sn); in mlx5_fpga_tls_set_key_material() 552 struct tls_crypto_info *crypto_info, in _mlx5_fpga_tls_add_flow() 567 ret = mlx5_fpga_tls_set_key_material(cmd, caps, crypto_info); in _mlx5_fpga_tls_add_flow() 533 mlx5_fpga_tls_set_key_material(void *cmd, u32 caps, struct tls_crypto_info *crypto_info) mlx5_fpga_tls_set_key_material() argument 551 _mlx5_fpga_tls_add_flow(struct mlx5_core_dev *mdev, void *flow, struct tls_crypto_info *crypto_info, u32 swid, u32 tcp_sn) _mlx5_fpga_tls_add_flow() argument 584 mlx5_fpga_tls_add_flow(struct mlx5_core_dev *mdev, void *flow, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn, u32 *p_swid, bool direction_sx) mlx5_fpga_tls_add_flow() argument [all...] |
/kernel/linux/linux-5.10/fs/hmdfs/comm/ |
H A D | crypto.c | 28 struct tls12_crypto_info_aes_gcm_128 *crypto_info = NULL; in tls_crypto_set_key() local 33 crypto_info = &conn_impl->send_crypto_info; in tls_crypto_set_key() 38 crypto_info = &conn_impl->recv_crypto_info; in tls_crypto_set_key() 44 memcpy(cctx->iv, crypto_info->salt, TLS_CIPHER_AES_GCM_128_SALT_SIZE); in tls_crypto_set_key() 45 memcpy(cctx->iv + TLS_CIPHER_AES_GCM_128_SALT_SIZE, crypto_info->iv, in tls_crypto_set_key() 47 memcpy(cctx->rec_seq, crypto_info->rec_seq, in tls_crypto_set_key() 49 rc = crypto_aead_setkey(*aead, crypto_info->key, in tls_crypto_set_key()
|
/kernel/linux/linux-6.6/fs/hmdfs/comm/ |
H A D | crypto.c | 28 struct tls12_crypto_info_aes_gcm_128 *crypto_info = NULL; in tls_crypto_set_key() local 33 crypto_info = &conn_impl->send_crypto_info; in tls_crypto_set_key() 38 crypto_info = &conn_impl->recv_crypto_info; in tls_crypto_set_key() 44 memcpy(cctx->iv, crypto_info->salt, TLS_CIPHER_AES_GCM_128_SALT_SIZE); in tls_crypto_set_key() 45 memcpy(cctx->iv + TLS_CIPHER_AES_GCM_128_SALT_SIZE, crypto_info->iv, in tls_crypto_set_key() 47 memcpy(cctx->rec_seq, crypto_info->rec_seq, in tls_crypto_set_key() 49 rc = crypto_aead_setkey(*aead, crypto_info->key, in tls_crypto_set_key()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/fungible/funeth/ |
H A D | funeth_ktls.c | 20 struct tls_crypto_info *crypto_info, in fun_ktls_add() 38 if (crypto_info->version == TLS_1_2_VERSION) in fun_ktls_add() 43 switch (crypto_info->cipher_type) { in fun_ktls_add() 45 struct tls12_crypto_info_aes_gcm_128 *c = (void *)crypto_info; in fun_ktls_add() 18 fun_ktls_add(struct net_device *netdev, struct sock *sk, enum tls_offload_ctx_dir direction, struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) fun_ktls_add() argument
|