summaryrefslogtreecommitdiff
path: root/drivers/md/dm-vdo
diff options
context:
space:
mode:
authorMatthew Sakai <msakai@redhat.com>2024-02-23 04:48:16 +0300
committerMike Snitzer <snitzer@kernel.org>2024-03-04 23:07:56 +0300
commit04530b487bf35962ac3fbf490a6ca07d7a5d8869 (patch)
tree9cac34ba41d35eede9b74eb5e8f401787cf3e83f /drivers/md/dm-vdo
parente1e510fcad19c67e122003028c15293115a5b9d7 (diff)
downloadlinux-04530b487bf35962ac3fbf490a6ca07d7a5d8869.tar.xz
dm vdo: remove outdated pointer_map reference
Signed-off-by: Matthew Sakai <msakai@redhat.com> Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Diffstat (limited to 'drivers/md/dm-vdo')
-rw-r--r--drivers/md/dm-vdo/vdo.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/md/dm-vdo/vdo.c b/drivers/md/dm-vdo/vdo.c
index c161dffeb91a..d16404588881 100644
--- a/drivers/md/dm-vdo/vdo.c
+++ b/drivers/md/dm-vdo/vdo.c
@@ -67,10 +67,7 @@ struct sync_completion {
struct completion completion;
};
-/*
- * We don't expect this set to ever get really large, so a linked list is adequate. We can use a
- * pointer_map if we need to later.
- */
+/* A linked list is adequate for the small number of entries we expect. */
struct device_registry {
struct list_head links;
/* TODO: Convert to rcu per kernel recommendation. */