Commit 131670c2 authored by Fuqian Huang's avatar Fuqian Huang Committed by Mike Snitzer

dm integrity: use kzalloc() instead of kmalloc() + memset()

Signed-off-by: default avatarFuqian Huang <huangfq.daxian@gmail.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent d370ad23
...@@ -3360,7 +3360,7 @@ static int create_journal(struct dm_integrity_c *ic, char **error) ...@@ -3360,7 +3360,7 @@ static int create_journal(struct dm_integrity_c *ic, char **error)
goto bad; goto bad;
} }
crypt_iv = kmalloc(ivsize, GFP_KERNEL); crypt_iv = kzalloc(ivsize, GFP_KERNEL);
if (!crypt_iv) { if (!crypt_iv) {
*error = "Could not allocate iv"; *error = "Could not allocate iv";
r = -ENOMEM; r = -ENOMEM;
...@@ -3389,7 +3389,6 @@ static int create_journal(struct dm_integrity_c *ic, char **error) ...@@ -3389,7 +3389,6 @@ static int create_journal(struct dm_integrity_c *ic, char **error)
sg_set_buf(&sg[i], va, PAGE_SIZE); sg_set_buf(&sg[i], va, PAGE_SIZE);
} }
sg_set_buf(&sg[i], &ic->commit_ids, sizeof ic->commit_ids); sg_set_buf(&sg[i], &ic->commit_ids, sizeof ic->commit_ids);
memset(crypt_iv, 0x00, ivsize);
skcipher_request_set_crypt(req, sg, sg, skcipher_request_set_crypt(req, sg, sg,
PAGE_SIZE * ic->journal_pages + sizeof ic->commit_ids, crypt_iv); PAGE_SIZE * ic->journal_pages + sizeof ic->commit_ids, crypt_iv);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment