summaryrefslogtreecommitdiff
path: root/drivers/md/dm-vdo/wait-queue.c
diff options
context:
space:
mode:
authorSweet Tea Dorminy <sweettea-kernel@dorminy.me>2025-02-19 17:55:39 -0500
committerMikulas Patocka <mpatocka@redhat.com>2025-02-24 12:09:44 +0100
commitff3f7115f4ff365ce759cd4e67e6653e9acfca86 (patch)
treea8b53446e5057616bf3240cfc966f075cf38e3a1 /drivers/md/dm-vdo/wait-queue.c
parent51ba14fb368e5fadadcca803ec64a51f3edbbdc1 (diff)
dm vdo: remove remaining ring references
Lists are the new rings, so update all remaining references to rings to talk about lists. Signed-off-by: Sweet Tea Dorminy <sweettea-kernel@dorminy.me> Signed-off-by: Matthew Sakai <msakai@redhat.com> Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Diffstat (limited to 'drivers/md/dm-vdo/wait-queue.c')
-rw-r--r--drivers/md/dm-vdo/wait-queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-vdo/wait-queue.c b/drivers/md/dm-vdo/wait-queue.c
index 6e1e739277ef..f81ed0cee2bf 100644
--- a/drivers/md/dm-vdo/wait-queue.c
+++ b/drivers/md/dm-vdo/wait-queue.c
@@ -34,7 +34,7 @@ void vdo_waitq_enqueue_waiter(struct vdo_wait_queue *waitq, struct vdo_waiter *w
waitq->last_waiter->next_waiter = waiter;
}
- /* In both cases, the waiter we added to the ring becomes the last waiter. */
+ /* In both cases, the waiter we added to the list becomes the last waiter. */
waitq->last_waiter = waiter;
waitq->length += 1;
}