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

xfs: remove a pointless comment duplicated above all xfs_item_ops instances

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>

authored by

Christoph Hellwig and committed by
Darrick J. Wong
95cf0e4a 89ae379d

-39
-6
fs/xfs/xfs_bmap_item.c
··· 126 126 xfs_bui_release(BUI_ITEM(lip)); 127 127 } 128 128 129 - /* 130 - * This is the ops vector shared by all bui log items. 131 - */ 132 129 static const struct xfs_item_ops xfs_bui_item_ops = { 133 130 .iop_size = xfs_bui_item_size, 134 131 .iop_format = xfs_bui_item_format, ··· 206 209 kmem_zone_free(xfs_bud_zone, budp); 207 210 } 208 211 209 - /* 210 - * This is the ops vector shared by all bud log items. 211 - */ 212 212 static const struct xfs_item_ops xfs_bud_item_ops = { 213 213 .flags = XFS_ITEM_RELEASE_WHEN_COMMITTED, 214 214 .iop_size = xfs_bud_item_size,
-3
fs/xfs/xfs_buf_item.c
··· 680 680 return lsn; 681 681 } 682 682 683 - /* 684 - * This is the ops vector shared by all buf log items. 685 - */ 686 683 static const struct xfs_item_ops xfs_buf_item_ops = { 687 684 .iop_size = xfs_buf_item_size, 688 685 .iop_format = xfs_buf_item_format,
-6
fs/xfs/xfs_dquot_item.c
··· 223 223 return xfs_qm_dquot_logitem_release(lip); 224 224 } 225 225 226 - /* 227 - * This is the ops vector for dquots 228 - */ 229 226 static const struct xfs_item_ops xfs_dquot_item_ops = { 230 227 .iop_size = xfs_qm_dquot_logitem_size, 231 228 .iop_format = xfs_qm_dquot_logitem_format, ··· 331 334 .iop_push = xfs_qm_qoff_logitem_push, 332 335 }; 333 336 334 - /* 335 - * This is the ops vector shared by all quotaoff-start log items. 336 - */ 337 337 static const struct xfs_item_ops xfs_qm_qoff_logitem_ops = { 338 338 .iop_size = xfs_qm_qoff_logitem_size, 339 339 .iop_format = xfs_qm_qoff_logitem_format,
-6
fs/xfs/xfs_extfree_item.c
··· 136 136 xfs_efi_release(EFI_ITEM(lip)); 137 137 } 138 138 139 - /* 140 - * This is the ops vector shared by all efi log items. 141 - */ 142 139 static const struct xfs_item_ops xfs_efi_item_ops = { 143 140 .iop_size = xfs_efi_item_size, 144 141 .iop_format = xfs_efi_item_format, ··· 305 308 xfs_efd_item_free(efdp); 306 309 } 307 310 308 - /* 309 - * This is the ops vector shared by all efd log items. 310 - */ 311 311 static const struct xfs_item_ops xfs_efd_item_ops = { 312 312 .flags = XFS_ITEM_RELEASE_WHEN_COMMITTED, 313 313 .iop_size = xfs_efd_item_size,
-3
fs/xfs/xfs_icreate_item.c
··· 63 63 kmem_zone_free(xfs_icreate_zone, ICR_ITEM(lip)); 64 64 } 65 65 66 - /* 67 - * This is the ops vector shared by all buf log items. 68 - */ 69 66 static const struct xfs_item_ops xfs_icreate_item_ops = { 70 67 .flags = XFS_ITEM_RELEASE_WHEN_COMMITTED, 71 68 .iop_size = xfs_icreate_item_size,
-3
fs/xfs/xfs_inode_item.c
··· 628 628 return xfs_inode_item_release(lip); 629 629 } 630 630 631 - /* 632 - * This is the ops vector shared by all buf log items. 633 - */ 634 631 static const struct xfs_item_ops xfs_inode_item_ops = { 635 632 .iop_size = xfs_inode_item_size, 636 633 .iop_format = xfs_inode_item_format,
-6
fs/xfs/xfs_refcount_item.c
··· 124 124 xfs_cui_release(CUI_ITEM(lip)); 125 125 } 126 126 127 - /* 128 - * This is the ops vector shared by all cui log items. 129 - */ 130 127 static const struct xfs_item_ops xfs_cui_item_ops = { 131 128 .iop_size = xfs_cui_item_size, 132 129 .iop_format = xfs_cui_item_format, ··· 210 213 kmem_zone_free(xfs_cud_zone, cudp); 211 214 } 212 215 213 - /* 214 - * This is the ops vector shared by all cud log items. 215 - */ 216 216 static const struct xfs_item_ops xfs_cud_item_ops = { 217 217 .flags = XFS_ITEM_RELEASE_WHEN_COMMITTED, 218 218 .iop_size = xfs_cud_item_size,
-6
fs/xfs/xfs_rmap_item.c
··· 123 123 xfs_rui_release(RUI_ITEM(lip)); 124 124 } 125 125 126 - /* 127 - * This is the ops vector shared by all rui log items. 128 - */ 129 126 static const struct xfs_item_ops xfs_rui_item_ops = { 130 127 .iop_size = xfs_rui_item_size, 131 128 .iop_format = xfs_rui_item_format, ··· 231 234 kmem_zone_free(xfs_rud_zone, rudp); 232 235 } 233 236 234 - /* 235 - * This is the ops vector shared by all rud log items. 236 - */ 237 237 static const struct xfs_item_ops xfs_rud_item_ops = { 238 238 .flags = XFS_ITEM_RELEASE_WHEN_COMMITTED, 239 239 .iop_size = xfs_rud_item_size,