summaryrefslogtreecommitdiff
path: root/drivers/md/dm-vdo/thread-utils.c
diff options
context:
space:
mode:
authorMike Snitzer <snitzer@kernel.org>2024-02-14 09:22:04 -0600
committerMike Snitzer <snitzer@kernel.org>2024-03-04 15:07:57 -0500
commit3584240b9ce4adf63c3a985a730eb3f75806c26d (patch)
tree7e29507ad19a40c9357a4f7db2c8f418ebae2457 /drivers/md/dm-vdo/thread-utils.c
parent66214ed0001eaea245b5d9f01b128aa82d6963a8 (diff)
downloadlwn-3584240b9ce4adf63c3a985a730eb3f75806c26d.tar.gz
lwn-3584240b9ce4adf63c3a985a730eb3f75806c26d.zip
dm vdo logger: change from uds_ to vdo_ namespace
Rename all uds_log_* to vdo_log_*. 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/thread-utils.c')
-rw-r--r--drivers/md/dm-vdo/thread-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-vdo/thread-utils.c b/drivers/md/dm-vdo/thread-utils.c
index c822df86f731..bd620be61c1d 100644
--- a/drivers/md/dm-vdo/thread-utils.c
+++ b/drivers/md/dm-vdo/thread-utils.c
@@ -84,7 +84,7 @@ int vdo_create_thread(void (*thread_function)(void *), void *thread_data,
result = vdo_allocate(1, struct thread, __func__, &thread);
if (result != VDO_SUCCESS) {
- uds_log_warning("Error allocating memory for %s", name);
+ vdo_log_warning("Error allocating memory for %s", name);
return result;
}