summaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-vdo/indexer/volume-index.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/md/dm-vdo/indexer/volume-index.c')
-rw-r--r--drivers/md/dm-vdo/indexer/volume-index.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/md/dm-vdo/indexer/volume-index.c b/drivers/md/dm-vdo/indexer/volume-index.c
index a88e515ceef6..1a762e6dd709 100644
--- a/drivers/md/dm-vdo/indexer/volume-index.c
+++ b/drivers/md/dm-vdo/indexer/volume-index.c
@@ -279,8 +279,8 @@ static int compute_volume_sub_index_parameters(const struct uds_configuration *c
static void uninitialize_volume_sub_index(struct volume_sub_index *sub_index)
{
- uds_free(uds_forget(sub_index->flush_chapters));
- uds_free(uds_forget(sub_index->zones));
+ vdo_free(vdo_forget(sub_index->flush_chapters));
+ vdo_free(vdo_forget(sub_index->zones));
uds_uninitialize_delta_index(&sub_index->delta_index);
}
@@ -290,11 +290,11 @@ void uds_free_volume_index(struct volume_index *volume_index)
return;
if (volume_index->zones != NULL)
- uds_free(uds_forget(volume_index->zones));
+ vdo_free(vdo_forget(volume_index->zones));
uninitialize_volume_sub_index(&volume_index->vi_non_hook);
uninitialize_volume_sub_index(&volume_index->vi_hook);
- uds_free(volume_index);
+ vdo_free(volume_index);
}
@@ -1211,12 +1211,12 @@ static int initialize_volume_sub_index(const struct uds_configuration *config,
(zone_count * sizeof(struct volume_sub_index_zone)));
/* The following arrays are initialized to all zeros. */
- result = uds_allocate(params.list_count, u64, "first chapter to flush",
+ result = vdo_allocate(params.list_count, u64, "first chapter to flush",
&sub_index->flush_chapters);
if (result != UDS_SUCCESS)
return result;
- return uds_allocate(zone_count, struct volume_sub_index_zone,
+ return vdo_allocate(zone_count, struct volume_sub_index_zone,
"volume index zones", &sub_index->zones);
}
@@ -1228,7 +1228,7 @@ int uds_make_volume_index(const struct uds_configuration *config, u64 volume_non
struct volume_index *volume_index;
int result;
- result = uds_allocate(1, struct volume_index, "volume index", &volume_index);
+ result = vdo_allocate(1, struct volume_index, "volume index", &volume_index);
if (result != UDS_SUCCESS)
return result;
@@ -1249,7 +1249,7 @@ int uds_make_volume_index(const struct uds_configuration *config, u64 volume_non
volume_index->sparse_sample_rate = config->sparse_sample_rate;
- result = uds_allocate(config->zone_count, struct volume_index_zone,
+ result = vdo_allocate(config->zone_count, struct volume_index_zone,
"volume index zones", &volume_index->zones);
if (result != UDS_SUCCESS) {
uds_free_volume_index(volume_index);