]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: crypto4xx - Fix size used in dma_free_coherent()
authorChristophe Jaillet <christophe.jaillet@wanadoo.fr>
Fri, 7 Oct 2016 20:36:20 +0000 (22:36 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 21 Oct 2016 03:03:41 +0000 (11:03 +0800)
commit0f5fd165fb3e862b687ade683325b5a4caf13794
treec317aabc87c632445805b702e588ef2335905168
parent0f46433c3eaf70c5e958d11f47c2b5acbae30df6
crypto: crypto4xx - Fix size used in dma_free_coherent()

The size used in 'dma_free_coherent()' looks un-initialized here.
ctx->sa_len is set a few lines below and is apparently not set by the
caller.
So use 'size' as in the corresponding 'dma_alloc_coherent()' a few lines
above.

This has been spotted with coccinelle, using the following script:
////////////////////
@r@
expression x0, x1, y0, y1, z0, z1, t0, t1, ret;
@@

*   ret = dma_alloc_coherent(x0, y0, z0, t0);
    ...
*   dma_free_coherent(x1, y1, ret, t1);

@script:python@
y0 << r.y0;
y1 << r.y1;

@@
if y1.find(y0) == -1:
 print "WARNING: sizes look different:  '%s'   vs   '%s'" % (y0, y1)
////////////////////

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/amcc/crypto4xx_core.c