Commit ac98fc5e authored by Shixin Liu's avatar Shixin Liu Committed by Herbert Xu
Browse files

crypto: sun4i-ss - Fix PM reference leak when pm_runtime_get_sync() fails



pm_runtime_get_sync will increment pm usage counter even it failed.
Forgetting to putting operation will result in reference leak here.
Fix it by replacing it with pm_runtime_resume_and_get to keep usage
counter balanced.

Signed-off-by: default avatarShixin Liu <liushixin2@huawei.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 1aa33c7a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -561,7 +561,7 @@ int sun4i_ss_cipher_init(struct crypto_tfm *tfm)
				    sizeof(struct sun4i_cipher_req_ctx) +
				    crypto_skcipher_reqsize(op->fallback_tfm));

	err = pm_runtime_get_sync(op->ss->dev);
	err = pm_runtime_resume_and_get(op->ss->dev);
	if (err < 0)
		goto error_pm;

+1 −1
Original line number Diff line number Diff line
@@ -454,7 +454,7 @@ static int sun4i_ss_probe(struct platform_device *pdev)
	 * this info could be useful
	 */

	err = pm_runtime_get_sync(ss->dev);
	err = pm_runtime_resume_and_get(ss->dev);
	if (err < 0)
		goto error_pm;

+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ int sun4i_hash_crainit(struct crypto_tfm *tfm)
	algt = container_of(alg, struct sun4i_ss_alg_template, alg.hash);
	op->ss = algt->ss;

	err = pm_runtime_get_sync(op->ss->dev);
	err = pm_runtime_resume_and_get(op->ss->dev);
	if (err < 0)
		return err;

+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ int sun4i_ss_prng_generate(struct crypto_rng *tfm, const u8 *src,
	algt = container_of(alg, struct sun4i_ss_alg_template, alg.rng);
	ss = algt->ss;

	err = pm_runtime_get_sync(ss->dev);
	err = pm_runtime_resume_and_get(ss->dev);
	if (err < 0)
		return err;