Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 95cf0e4a authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Darrick J. Wong
Browse files

xfs: remove a pointless comment duplicated above all xfs_item_ops instances

parent 89ae379d
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -126,9 +126,6 @@ xfs_bui_item_release(
	xfs_bui_release(BUI_ITEM(lip));
}

/*
 * This is the ops vector shared by all bui log items.
 */
static const struct xfs_item_ops xfs_bui_item_ops = {
	.iop_size	= xfs_bui_item_size,
	.iop_format	= xfs_bui_item_format,
@@ -209,9 +206,6 @@ xfs_bud_item_release(
	kmem_zone_free(xfs_bud_zone, budp);
}

/*
 * This is the ops vector shared by all bud log items.
 */
static const struct xfs_item_ops xfs_bud_item_ops = {
	.flags		= XFS_ITEM_RELEASE_WHEN_COMMITTED,
	.iop_size	= xfs_bud_item_size,
+0 −3
Original line number Diff line number Diff line
@@ -680,9 +680,6 @@ xfs_buf_item_committed(
	return lsn;
}

/*
 * This is the ops vector shared by all buf log items.
 */
static const struct xfs_item_ops xfs_buf_item_ops = {
	.iop_size	= xfs_buf_item_size,
	.iop_format	= xfs_buf_item_format,
+0 −6
Original line number Diff line number Diff line
@@ -223,9 +223,6 @@ xfs_qm_dquot_logitem_committing(
	return xfs_qm_dquot_logitem_release(lip);
}

/*
 * This is the ops vector for dquots
 */
static const struct xfs_item_ops xfs_dquot_item_ops = {
	.iop_size	= xfs_qm_dquot_logitem_size,
	.iop_format	= xfs_qm_dquot_logitem_format,
@@ -334,9 +331,6 @@ static const struct xfs_item_ops xfs_qm_qoffend_logitem_ops = {
	.iop_push	= xfs_qm_qoff_logitem_push,
};

/*
 * This is the ops vector shared by all quotaoff-start log items.
 */
static const struct xfs_item_ops xfs_qm_qoff_logitem_ops = {
	.iop_size	= xfs_qm_qoff_logitem_size,
	.iop_format	= xfs_qm_qoff_logitem_format,
+0 −6
Original line number Diff line number Diff line
@@ -136,9 +136,6 @@ xfs_efi_item_release(
	xfs_efi_release(EFI_ITEM(lip));
}

/*
 * This is the ops vector shared by all efi log items.
 */
static const struct xfs_item_ops xfs_efi_item_ops = {
	.iop_size	= xfs_efi_item_size,
	.iop_format	= xfs_efi_item_format,
@@ -308,9 +305,6 @@ xfs_efd_item_release(
	xfs_efd_item_free(efdp);
}

/*
 * This is the ops vector shared by all efd log items.
 */
static const struct xfs_item_ops xfs_efd_item_ops = {
	.flags		= XFS_ITEM_RELEASE_WHEN_COMMITTED,
	.iop_size	= xfs_efd_item_size,
+0 −3
Original line number Diff line number Diff line
@@ -63,9 +63,6 @@ xfs_icreate_item_release(
	kmem_zone_free(xfs_icreate_zone, ICR_ITEM(lip));
}

/*
 * This is the ops vector shared by all buf log items.
 */
static const struct xfs_item_ops xfs_icreate_item_ops = {
	.flags		= XFS_ITEM_RELEASE_WHEN_COMMITTED,
	.iop_size	= xfs_icreate_item_size,
Loading