Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dm vdo: fix various function names referenced in comment blocks

No functional modification involved.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: Matthew Sakai <msakai@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>

authored by

Jiapeng Chong and committed by
Mike Snitzer
eebd4e16 17b1a73f

+12 -12
+1 -1
drivers/md/dm-vdo/admin-state.c
··· 300 300 } 301 301 302 302 /** 303 - * vdo_drain_operation() - Check that an operation is a drain. 303 + * assert_vdo_drain_operation() - Check that an operation is a drain. 304 304 * @waiter The completion to finish with an error if the operation is not a drain. 305 305 * 306 306 * Return: true if the specified operation is a drain.
+1 -1
drivers/md/dm-vdo/dedupe.c
··· 2839 2839 } 2840 2840 2841 2841 /** 2842 - * vdo_dump_hash_zone() - Dump information about a hash zone to the log for debugging. 2842 + * dump_hash_zone() - Dump information about a hash zone to the log for debugging. 2843 2843 * @zone: The zone to dump. 2844 2844 */ 2845 2845 static void dump_hash_zone(const struct hash_zone *zone)
+1 -1
drivers/md/dm-vdo/encodings.c
··· 1172 1172 } 1173 1173 1174 1174 /** 1175 - * vdo_decode_component() - Decode the component data for the vdo itself out of the super block. 1175 + * decode_vdo_component() - Decode the component data for the vdo itself out of the super block. 1176 1176 * 1177 1177 * Return: VDO_SUCCESS or an error. 1178 1178 */
+1 -1
drivers/md/dm-vdo/flush.c
··· 88 88 } 89 89 90 90 /** 91 - * waiter_as_flush() - Convert a vdo_flush's generic wait queue entry back to the vdo_flush. 91 + * vdo_waiter_as_flush() - Convert a vdo_flush's generic wait queue entry back to the vdo_flush. 92 92 * @waiter: The wait queue entry to convert. 93 93 * 94 94 * Return: The wait queue entry as a vdo_flush.
+2 -2
drivers/md/dm-vdo/logical-zone.c
··· 295 295 } 296 296 297 297 /** 298 - * void attempt_generation_complete_notification() - Notify the flusher if some generation no 299 - * longer has active VIOs. 298 + * attempt_generation_complete_notification() - Notify the flusher if some generation no 299 + * longer has active VIOs. 300 300 * @completion: The zone completion. 301 301 */ 302 302 static void attempt_generation_complete_notification(struct vdo_completion *completion)
+1 -1
drivers/md/dm-vdo/physical-zone.c
··· 258 258 } 259 259 260 260 /** 261 - * vdo_free_pbn_lock_pool() - Free a PBN lock pool. 261 + * free_pbn_lock_pool() - Free a PBN lock pool. 262 262 * @pool: The lock pool to free. 263 263 * 264 264 * This also frees all the PBN locks it allocated, so the caller must ensure that all locks have
+3 -3
drivers/md/dm-vdo/slab-depot.c
··· 2035 2035 } 2036 2036 2037 2037 /** 2038 - * vdo_find_free_block() - Find the first block with a reference count of zero in the specified 2039 - * range of reference counter indexes. 2038 + * find_free_block() - Find the first block with a reference count of zero in the specified 2039 + * range of reference counter indexes. 2040 2040 * @slab: The slab counters to scan. 2041 2041 * @index_ptr: A pointer to hold the array index of the free block. 2042 2042 * ··· 5032 5032 } 5033 5033 5034 5034 /** 5035 - * get_depot_slab_journal_statistics() - Get the aggregated slab journal statistics for the depot. 5035 + * get_slab_journal_statistics() - Get the aggregated slab journal statistics for the depot. 5036 5036 * @depot: The slab depot. 5037 5037 * 5038 5038 * Return: The aggregated statistics for all slab journals in the depot.
+2 -2
drivers/md/dm-vdo/vdo.c
··· 267 267 } 268 268 269 269 /** 270 - * vdo_read_geometry_block() - Synchronously read the geometry block from a vdo's underlying block 271 - * device. 270 + * read_geometry_block() - Synchronously read the geometry block from a vdo's underlying block 271 + * device. 272 272 * @vdo: The vdo whose geometry is to be read. 273 273 * 274 274 * Return: VDO_SUCCESS or an error code.