summaryrefslogtreecommitdiff
path: root/drivers/md/dm-vdo/slab-depot.c
diff options
context:
space:
mode:
authorMike Snitzer <snitzer@kernel.org>2024-02-14 09:34:46 -0600
committerMike Snitzer <snitzer@kernel.org>2024-03-04 15:07:57 -0500
commit900d337b4677b958c4139e307a9eebb72503d044 (patch)
treebe13c2d1a6828d928d9ec85a21f6b27721560d37 /drivers/md/dm-vdo/slab-depot.c
parent3584240b9ce4adf63c3a985a730eb3f75806c26d (diff)
downloadlwn-900d337b4677b958c4139e307a9eebb72503d044.tar.gz
lwn-900d337b4677b958c4139e307a9eebb72503d044.zip
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/slab-depot.c')
-rw-r--r--drivers/md/dm-vdo/slab-depot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/md/dm-vdo/slab-depot.c b/drivers/md/dm-vdo/slab-depot.c
index dc9f3d3c3995..46e4721e5b4f 100644
--- a/drivers/md/dm-vdo/slab-depot.c
+++ b/drivers/md/dm-vdo/slab-depot.c
@@ -3597,8 +3597,8 @@ void vdo_dump_block_allocator(const struct block_allocator *allocator)
vdo_log_info(" slab journal: entry_waiters=%zu waiting_to_commit=%s updating_slab_summary=%s head=%llu unreapable=%llu tail=%llu next_commit=%llu summarized=%llu last_summarized=%llu recovery_lock=%llu dirty=%s",
vdo_waitq_num_waiters(&journal->entry_waiters),
- uds_bool_to_string(journal->waiting_to_commit),
- uds_bool_to_string(journal->updating_slab_summary),
+ vdo_bool_to_string(journal->waiting_to_commit),
+ vdo_bool_to_string(journal->updating_slab_summary),
(unsigned long long) journal->head,
(unsigned long long) journal->unreapable,
(unsigned long long) journal->tail,
@@ -3606,7 +3606,7 @@ void vdo_dump_block_allocator(const struct block_allocator *allocator)
(unsigned long long) journal->summarized,
(unsigned long long) journal->last_summarized,
(unsigned long long) journal->recovery_lock,
- uds_bool_to_string(journal->recovery_lock != 0));
+ vdo_bool_to_string(journal->recovery_lock != 0));
/*
* Given the frequency with which the locks are just a tiny bit off, it might be
* worth dumping all the locks, but that might be too much logging.