Lines Matching refs:t_alg
1378 struct cc_crypto_alg *t_alg; in cc_create_alg() local
1381 t_alg = devm_kzalloc(dev, sizeof(*t_alg), GFP_KERNEL); in cc_create_alg()
1382 if (!t_alg) in cc_create_alg()
1385 alg = &t_alg->skcipher_alg; in cc_create_alg()
1406 t_alg->cipher_mode = tmpl->cipher_mode; in cc_create_alg()
1407 t_alg->flow_mode = tmpl->flow_mode; in cc_create_alg()
1409 return t_alg; in cc_create_alg()
1414 struct cc_crypto_alg *t_alg, *n; in cc_cipher_free() local
1417 list_for_each_entry_safe(t_alg, n, &drvdata->alg_list, entry) { in cc_cipher_free()
1418 crypto_unregister_skcipher(&t_alg->skcipher_alg); in cc_cipher_free()
1419 list_del(&t_alg->entry); in cc_cipher_free()
1426 struct cc_crypto_alg *t_alg; in cc_cipher_alloc() local
1443 t_alg = cc_create_alg(&skcipher_algs[alg], dev); in cc_cipher_alloc()
1444 if (IS_ERR(t_alg)) { in cc_cipher_alloc()
1445 rc = PTR_ERR(t_alg); in cc_cipher_alloc()
1450 t_alg->drvdata = drvdata; in cc_cipher_alloc()
1454 rc = crypto_register_skcipher(&t_alg->skcipher_alg); in cc_cipher_alloc()
1456 t_alg->skcipher_alg.base.cra_driver_name, rc); in cc_cipher_alloc()
1459 t_alg->skcipher_alg.base.cra_driver_name); in cc_cipher_alloc()
1463 list_add_tail(&t_alg->entry, &drvdata->alg_list); in cc_cipher_alloc()
1465 t_alg->skcipher_alg.base.cra_driver_name); in cc_cipher_alloc()