aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-log.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-08-02 07:32:02 -0400
committerAlasdair G Kergon <agk@redhat.com>2011-08-02 07:32:02 -0400
commite29e65aacbd9e628378084905cbcf62a9fa4a8cc (patch)
tree279e6e87d60da82c082833205c996d7046b1a46d /drivers/md/dm-log.c
parent6c9b27ab08aaf46426515b8b858ad9c60731c7a1 (diff)
dm: use vzalloc
Use vzalloc() instead of vmalloc()+memset(). Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-log.c')
-rw-r--r--drivers/md/dm-log.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/md/dm-log.c b/drivers/md/dm-log.c
index 306ce123d6b4..3b52bb72bd1f 100644
--- a/drivers/md/dm-log.c
+++ b/drivers/md/dm-log.c
@@ -492,7 +492,7 @@ static int create_log_context(struct dm_dirty_log *log, struct dm_target *ti,
492 memset(lc->sync_bits, (sync == NOSYNC) ? -1 : 0, bitset_size); 492 memset(lc->sync_bits, (sync == NOSYNC) ? -1 : 0, bitset_size);
493 lc->sync_count = (sync == NOSYNC) ? region_count : 0; 493 lc->sync_count = (sync == NOSYNC) ? region_count : 0;
494 494
495 lc->recovering_bits = vmalloc(bitset_size); 495 lc->recovering_bits = vzalloc(bitset_size);
496 if (!lc->recovering_bits) { 496 if (!lc->recovering_bits) {
497 DMWARN("couldn't allocate sync bitset"); 497 DMWARN("couldn't allocate sync bitset");
498 vfree(lc->sync_bits); 498 vfree(lc->sync_bits);
@@ -504,7 +504,6 @@ static int create_log_context(struct dm_dirty_log *log, struct dm_target *ti,
504 kfree(lc); 504 kfree(lc);
505 return -ENOMEM; 505 return -ENOMEM;
506 } 506 }
507 memset(lc->recovering_bits, 0, bitset_size);
508 lc->sync_search = 0; 507 lc->sync_search = 0;
509 log->context = lc; 508 log->context = lc;
510 509