]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
crypto: caam - fix caam_jr_alloc() ret code
authorCatalin Vasile <cata.vasile@nxp.com>
Fri, 6 May 2016 13:18:53 +0000 (16:18 +0300)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 10 May 2016 09:49:21 +0000 (17:49 +0800)
caam_jr_alloc() used to return NULL if a JR device could not be
allocated for a session. In turn, every user of this function used
IS_ERR() function to verify if anything went wrong, which does NOT look
for NULL values. This made the kernel crash if the sanity check failed,
because the driver continued to think it had allocated a valid JR dev
instance to the session and at some point it tries to do a caam_jr_free()
on a NULL JR dev pointer.
This patch is a fix for this issue.

Cc: <stable@vger.kernel.org>
Signed-off-by: Catalin Vasile <cata.vasile@nxp.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/caam/jr.c

index 6fd63a600614e39f4893634eda28792f64fedda4..5ef4be22eb8099573fd4d35f62d24143d29ea043 100644 (file)
@@ -248,7 +248,7 @@ static void caam_jr_dequeue(unsigned long devarg)
 struct device *caam_jr_alloc(void)
 {
        struct caam_drv_private_jr *jrpriv, *min_jrpriv = NULL;
-       struct device *dev = NULL;
+       struct device *dev = ERR_PTR(-ENODEV);
        int min_tfm_cnt = INT_MAX;
        int tfm_cnt;