aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/deflate.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-11-27 16:30:39 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2010-11-27 16:30:39 +0800
commitc8484594aeafe889269bd01232049b184140de3f (patch)
treec46365ca7ede307da79f486ba2b49e66a8a861d4 /crypto/deflate.c
parent8ff590903d5fc7f5a0a988c38267a3d08e6393a2 (diff)
downloadkernel_samsung_smdk4412-c8484594aeafe889269bd01232049b184140de3f.zip
kernel_samsung_smdk4412-c8484594aeafe889269bd01232049b184140de3f.tar.gz
kernel_samsung_smdk4412-c8484594aeafe889269bd01232049b184140de3f.tar.bz2
crypto: Use vzalloc
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/deflate.c')
-rw-r--r--crypto/deflate.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/deflate.c b/crypto/deflate.c
index 463dc85..cbc7a33 100644
--- a/crypto/deflate.c
+++ b/crypto/deflate.c
@@ -48,12 +48,11 @@ static int deflate_comp_init(struct deflate_ctx *ctx)
int ret = 0;
struct z_stream_s *stream = &ctx->comp_stream;
- stream->workspace = vmalloc(zlib_deflate_workspacesize());
+ stream->workspace = vzalloc(zlib_deflate_workspacesize());
if (!stream->workspace) {
ret = -ENOMEM;
goto out;
}
- memset(stream->workspace, 0, zlib_deflate_workspacesize());
ret = zlib_deflateInit2(stream, DEFLATE_DEF_LEVEL, Z_DEFLATED,
-DEFLATE_DEF_WINBITS, DEFLATE_DEF_MEMLEVEL,
Z_DEFAULT_STRATEGY);