diff options
author | Matthew Sakai <[email protected]> | 2024-02-22 20:48:16 -0500 |
---|---|---|
committer | Mike Snitzer <[email protected]> | 2024-03-04 15:07:56 -0500 |
commit | 04530b487bf35962ac3fbf490a6ca07d7a5d8869 (patch) | |
tree | 9cac34ba41d35eede9b74eb5e8f401787cf3e83f | |
parent | e1e510fcad19c67e122003028c15293115a5b9d7 (diff) |
dm vdo: remove outdated pointer_map reference
Signed-off-by: Matthew Sakai <[email protected]>
Signed-off-by: Mike Snitzer <[email protected]>
-rw-r--r-- | drivers/md/dm-vdo/vdo.c | 5 |
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. */ |