summaryrefslogtreecommitdiff
path: root/drivers/md/dm-vdo/dm-vdo-target.c
diff options
context:
space:
mode:
authorMike Snitzer <snitzer@kernel.org>2024-02-14 18:34:46 +0300
committerMike Snitzer <snitzer@kernel.org>2024-03-04 23:07:57 +0300
commit900d337b4677b958c4139e307a9eebb72503d044 (patch)
treebe13c2d1a6828d928d9ec85a21f6b27721560d37 /drivers/md/dm-vdo/dm-vdo-target.c
parent3584240b9ce4adf63c3a985a730eb3f75806c26d (diff)
downloadlinux-900d337b4677b958c4139e307a9eebb72503d044.tar.xz
dm vdo string-utils: change from uds_ to vdo_ namespace
Signed-off-by: Mike Snitzer <snitzer@kernel.org> Signed-off-by: Chung Chung <cchung@redhat.com> Signed-off-by: Matthew Sakai <msakai@redhat.com>
Diffstat (limited to 'drivers/md/dm-vdo/dm-vdo-target.c')
-rw-r--r--drivers/md/dm-vdo/dm-vdo-target.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-vdo/dm-vdo-target.c b/drivers/md/dm-vdo/dm-vdo-target.c
index 4908996f5224..b7b3eec39522 100644
--- a/drivers/md/dm-vdo/dm-vdo-target.c
+++ b/drivers/md/dm-vdo/dm-vdo-target.c
@@ -340,7 +340,7 @@ static int join_strings(char **substring_array, size_t array_length, char separa
current_position = &output[0];
for (i = 0; (i < array_length) && (substring_array[i] != NULL); i++) {
- current_position = uds_append_to_buffer(current_position,
+ current_position = vdo_append_to_buffer(current_position,
output + string_length, "%s",
substring_array[i]);
*current_position = separator;