Loading crypto/cbc.c +4 −2 Original line number Diff line number Diff line Loading @@ -140,9 +140,8 @@ static int crypto_cbc_create(struct crypto_template *tmpl, struct rtattr **tb) spawn = skcipher_instance_ctx(inst); err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst), CRYPTO_ALG_TYPE_MASK); crypto_mod_put(alg); if (err) goto err_free_inst; goto err_put_alg; err = crypto_inst_setname(skcipher_crypto_instance(inst), "cbc", alg); if (err) Loading Loading @@ -174,12 +173,15 @@ static int crypto_cbc_create(struct crypto_template *tmpl, struct rtattr **tb) err = skcipher_register_instance(tmpl, inst); if (err) goto err_drop_spawn; crypto_mod_put(alg); out: return err; err_drop_spawn: crypto_drop_spawn(spawn); err_put_alg: crypto_mod_put(alg); err_free_inst: kfree(inst); goto out; Loading crypto/cfb.c +4 −2 Original line number Diff line number Diff line Loading @@ -286,9 +286,8 @@ static int crypto_cfb_create(struct crypto_template *tmpl, struct rtattr **tb) spawn = skcipher_instance_ctx(inst); err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst), CRYPTO_ALG_TYPE_MASK); crypto_mod_put(alg); if (err) goto err_free_inst; goto err_put_alg; err = crypto_inst_setname(skcipher_crypto_instance(inst), "cfb", alg); if (err) Loading Loading @@ -317,12 +316,15 @@ static int crypto_cfb_create(struct crypto_template *tmpl, struct rtattr **tb) err = skcipher_register_instance(tmpl, inst); if (err) goto err_drop_spawn; crypto_mod_put(alg); out: return err; err_drop_spawn: crypto_drop_spawn(spawn); err_put_alg: crypto_mod_put(alg); err_free_inst: kfree(inst); goto out; Loading crypto/pcbc.c +4 −2 Original line number Diff line number Diff line Loading @@ -244,9 +244,8 @@ static int crypto_pcbc_create(struct crypto_template *tmpl, struct rtattr **tb) spawn = skcipher_instance_ctx(inst); err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst), CRYPTO_ALG_TYPE_MASK); crypto_mod_put(alg); if (err) goto err_free_inst; goto err_put_alg; err = crypto_inst_setname(skcipher_crypto_instance(inst), "pcbc", alg); if (err) Loading Loading @@ -275,12 +274,15 @@ static int crypto_pcbc_create(struct crypto_template *tmpl, struct rtattr **tb) err = skcipher_register_instance(tmpl, inst); if (err) goto err_drop_spawn; crypto_mod_put(alg); out: return err; err_drop_spawn: crypto_drop_spawn(spawn); err_put_alg: crypto_mod_put(alg); err_free_inst: kfree(inst); goto out; Loading Loading
crypto/cbc.c +4 −2 Original line number Diff line number Diff line Loading @@ -140,9 +140,8 @@ static int crypto_cbc_create(struct crypto_template *tmpl, struct rtattr **tb) spawn = skcipher_instance_ctx(inst); err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst), CRYPTO_ALG_TYPE_MASK); crypto_mod_put(alg); if (err) goto err_free_inst; goto err_put_alg; err = crypto_inst_setname(skcipher_crypto_instance(inst), "cbc", alg); if (err) Loading Loading @@ -174,12 +173,15 @@ static int crypto_cbc_create(struct crypto_template *tmpl, struct rtattr **tb) err = skcipher_register_instance(tmpl, inst); if (err) goto err_drop_spawn; crypto_mod_put(alg); out: return err; err_drop_spawn: crypto_drop_spawn(spawn); err_put_alg: crypto_mod_put(alg); err_free_inst: kfree(inst); goto out; Loading
crypto/cfb.c +4 −2 Original line number Diff line number Diff line Loading @@ -286,9 +286,8 @@ static int crypto_cfb_create(struct crypto_template *tmpl, struct rtattr **tb) spawn = skcipher_instance_ctx(inst); err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst), CRYPTO_ALG_TYPE_MASK); crypto_mod_put(alg); if (err) goto err_free_inst; goto err_put_alg; err = crypto_inst_setname(skcipher_crypto_instance(inst), "cfb", alg); if (err) Loading Loading @@ -317,12 +316,15 @@ static int crypto_cfb_create(struct crypto_template *tmpl, struct rtattr **tb) err = skcipher_register_instance(tmpl, inst); if (err) goto err_drop_spawn; crypto_mod_put(alg); out: return err; err_drop_spawn: crypto_drop_spawn(spawn); err_put_alg: crypto_mod_put(alg); err_free_inst: kfree(inst); goto out; Loading
crypto/pcbc.c +4 −2 Original line number Diff line number Diff line Loading @@ -244,9 +244,8 @@ static int crypto_pcbc_create(struct crypto_template *tmpl, struct rtattr **tb) spawn = skcipher_instance_ctx(inst); err = crypto_init_spawn(spawn, alg, skcipher_crypto_instance(inst), CRYPTO_ALG_TYPE_MASK); crypto_mod_put(alg); if (err) goto err_free_inst; goto err_put_alg; err = crypto_inst_setname(skcipher_crypto_instance(inst), "pcbc", alg); if (err) Loading Loading @@ -275,12 +274,15 @@ static int crypto_pcbc_create(struct crypto_template *tmpl, struct rtattr **tb) err = skcipher_register_instance(tmpl, inst); if (err) goto err_drop_spawn; crypto_mod_put(alg); out: return err; err_drop_spawn: crypto_drop_spawn(spawn); err_put_alg: crypto_mod_put(alg); err_free_inst: kfree(inst); goto out; Loading