aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorMike Snitzer <snitzer@kernel.org>2024-02-13 13:50:41 -0600
committerMike Snitzer <snitzer@kernel.org>2024-03-04 15:07:56 -0500
commita958c53af7a5b9297ec0dcaf3689172c34485e35 (patch)
tree1d67d03bd60f8c43ae1ca8afcfdfc13641e9ccaf /drivers/md
parent34edf9e28c917cfb16522bf4adc630efed8629c5 (diff)
downloadlinux-a958c53af7a5b9297ec0dcaf3689172c34485e35.tar.gz
dm-vdo funnel-workqueue: return VDO_SUCCESS from make_simple_work_queue
Signed-off-by: Mike Snitzer <snitzer@kernel.org> Signed-off-by: Matthew Sakai <msakai@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-vdo/funnel-workqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-vdo/funnel-workqueue.c b/drivers/md/dm-vdo/funnel-workqueue.c
index a88f5c93eae537..a923432f0a37e1 100644
--- a/drivers/md/dm-vdo/funnel-workqueue.c
+++ b/drivers/md/dm-vdo/funnel-workqueue.c
@@ -367,7 +367,7 @@ static int make_simple_work_queue(const char *thread_name_prefix, const char *na
wait_for_completion(&started);
*queue_ptr = queue;
- return UDS_SUCCESS;
+ return VDO_SUCCESS;
}
/**