summaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-vdo/funnel-workqueue.c
diff options
context:
space:
mode:
authorMike Snitzer <snitzer@kernel.org>2024-02-13 20:50:41 +0100
committerMike Snitzer <snitzer@kernel.org>2024-03-04 21:07:56 +0100
commita958c53af7a5b9297ec0dcaf3689172c34485e35 (patch)
tree1d67d03bd60f8c43ae1ca8afcfdfc13641e9ccaf /drivers/md/dm-vdo/funnel-workqueue.c
parentdm vdo thread-utils: return VDO_SUCCESS on vdo_create_thread success (diff)
downloadlinux-a958c53af7a5b9297ec0dcaf3689172c34485e35.tar.xz
linux-a958c53af7a5b9297ec0dcaf3689172c34485e35.zip
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 '')
-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 a88f5c93eae5..a923432f0a37 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;
}
/**