diff options
author | Eric Dumazet <edumazet@google.com> | 2014-06-24 04:23:45 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-06-25 09:51:53 -0400 |
commit | de18cd4b71acecbd1278a7bb79340cbf885212aa (patch) | |
tree | 64881b66f615b3269af3eac6b94189fac89e7048 /crypto/lzo.c | |
parent | 5e50d43d65d4190fb9bb183cc086e356a065cc23 (diff) |
crypto: lzo - use kvfree() helper
kvfree() helper is now available, use it instead of open code it.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/lzo.c')
-rw-r--r-- | crypto/lzo.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/crypto/lzo.c b/crypto/lzo.c index 252e791d0ccc..a8ff2f778dc4 100644 --- a/crypto/lzo.c +++ b/crypto/lzo.c | |||
@@ -45,10 +45,7 @@ static void lzo_exit(struct crypto_tfm *tfm) | |||
45 | { | 45 | { |
46 | struct lzo_ctx *ctx = crypto_tfm_ctx(tfm); | 46 | struct lzo_ctx *ctx = crypto_tfm_ctx(tfm); |
47 | 47 | ||
48 | if (is_vmalloc_addr(ctx->lzo_comp_mem)) | 48 | kvfree(ctx->lzo_comp_mem); |
49 | vfree(ctx->lzo_comp_mem); | ||
50 | else | ||
51 | kfree(ctx->lzo_comp_mem); | ||
52 | } | 49 | } |
53 | 50 | ||
54 | static int lzo_compress(struct crypto_tfm *tfm, const u8 *src, | 51 | static int lzo_compress(struct crypto_tfm *tfm, const u8 *src, |