From: Brian Foster <bfoster@redhat.com>
To: Christoph Hellwig <hch@lst.de>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 17/20] xfs: merge xfs_trans_extfree.c into xfs_extfree_item.c
Date: Mon, 20 May 2019 09:13:44 -0400 [thread overview]
Message-ID: <20190520131343.GH31317@bfoster> (raw)
In-Reply-To: <20190517073119.30178-18-hch@lst.de>
On Fri, May 17, 2019 at 09:31:16AM +0200, Christoph Hellwig wrote:
> Keep all the extree item related code together in one file.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
Reviewed-by: Brian Foster <bfoster@redhat.com>
> fs/xfs/Makefile | 1 -
> fs/xfs/xfs_extfree_item.c | 247 ++++++++++++++++++++++++++++++++++-
> fs/xfs/xfs_trans.h | 8 --
> fs/xfs/xfs_trans_extfree.c | 260 -------------------------------------
> 4 files changed, 246 insertions(+), 270 deletions(-)
> delete mode 100644 fs/xfs/xfs_trans_extfree.c
>
> diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile
> index 1dfc6df2e2bd..771a4738abd2 100644
> --- a/fs/xfs/Makefile
> +++ b/fs/xfs/Makefile
> @@ -106,7 +106,6 @@ xfs-y += xfs_log.o \
> xfs_trans_ail.o \
> xfs_trans_bmap.o \
> xfs_trans_buf.o \
> - xfs_trans_extfree.o \
> xfs_trans_inode.o \
> xfs_trans_refcount.o \
> xfs_trans_rmap.o \
> diff --git a/fs/xfs/xfs_extfree_item.c b/fs/xfs/xfs_extfree_item.c
> index ccf95cb8234c..219dbaf9d65b 100644
> --- a/fs/xfs/xfs_extfree_item.c
> +++ b/fs/xfs/xfs_extfree_item.c
> @@ -5,11 +5,14 @@
> */
> #include "xfs.h"
> #include "xfs_fs.h"
> +#include "xfs_shared.h"
> #include "xfs_format.h"
> #include "xfs_log_format.h"
> #include "xfs_trans_resv.h"
> #include "xfs_bit.h"
> #include "xfs_mount.h"
> +#include "xfs_defer.h"
> +#include "xfs_trans.h"
> #include "xfs_trans.h"
> #include "xfs_trans_priv.h"
> #include "xfs_buf_item.h"
> @@ -17,6 +20,9 @@
> #include "xfs_log.h"
> #include "xfs_btree.h"
> #include "xfs_rmap.h"
> +#include "xfs_alloc.h"
> +#include "xfs_bmap.h"
> +#include "xfs_trace.h"
>
>
> kmem_zone_t *xfs_efi_zone;
> @@ -316,7 +322,7 @@ static const struct xfs_item_ops xfs_efd_item_ops = {
> * extents. The caller must use all nextents extents, because we are not
> * flexible about this at all.
> */
> -struct xfs_efd_log_item *
> +static struct xfs_efd_log_item *
> xfs_trans_get_efd(
> struct xfs_trans *tp,
> struct xfs_efi_log_item *efip,
> @@ -344,6 +350,245 @@ xfs_trans_get_efd(
> return efdp;
> }
>
> +/*
> + * Free an extent and log it to the EFD. Note that the transaction is marked
> + * dirty regardless of whether the extent free succeeds or fails to support the
> + * EFI/EFD lifecycle rules.
> + */
> +static int
> +xfs_trans_free_extent(
> + struct xfs_trans *tp,
> + struct xfs_efd_log_item *efdp,
> + xfs_fsblock_t start_block,
> + xfs_extlen_t ext_len,
> + const struct xfs_owner_info *oinfo,
> + bool skip_discard)
> +{
> + struct xfs_mount *mp = tp->t_mountp;
> + struct xfs_extent *extp;
> + uint next_extent;
> + xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, start_block);
> + xfs_agblock_t agbno = XFS_FSB_TO_AGBNO(mp,
> + start_block);
> + int error;
> +
> + trace_xfs_bmap_free_deferred(tp->t_mountp, agno, 0, agbno, ext_len);
> +
> + error = __xfs_free_extent(tp, start_block, ext_len,
> + oinfo, XFS_AG_RESV_NONE, skip_discard);
> + /*
> + * Mark the transaction dirty, even on error. This ensures the
> + * transaction is aborted, which:
> + *
> + * 1.) releases the EFI and frees the EFD
> + * 2.) shuts down the filesystem
> + */
> + tp->t_flags |= XFS_TRANS_DIRTY;
> + set_bit(XFS_LI_DIRTY, &efdp->efd_item.li_flags);
> +
> + next_extent = efdp->efd_next_extent;
> + ASSERT(next_extent < efdp->efd_format.efd_nextents);
> + extp = &(efdp->efd_format.efd_extents[next_extent]);
> + extp->ext_start = start_block;
> + extp->ext_len = ext_len;
> + efdp->efd_next_extent++;
> +
> + return error;
> +}
> +
> +/* Sort bmap items by AG. */
> +static int
> +xfs_extent_free_diff_items(
> + void *priv,
> + struct list_head *a,
> + struct list_head *b)
> +{
> + struct xfs_mount *mp = priv;
> + struct xfs_extent_free_item *ra;
> + struct xfs_extent_free_item *rb;
> +
> + ra = container_of(a, struct xfs_extent_free_item, xefi_list);
> + rb = container_of(b, struct xfs_extent_free_item, xefi_list);
> + return XFS_FSB_TO_AGNO(mp, ra->xefi_startblock) -
> + XFS_FSB_TO_AGNO(mp, rb->xefi_startblock);
> +}
> +
> +/* Get an EFI. */
> +STATIC void *
> +xfs_extent_free_create_intent(
> + struct xfs_trans *tp,
> + unsigned int count)
> +{
> + struct xfs_efi_log_item *efip;
> +
> + ASSERT(tp != NULL);
> + ASSERT(count > 0);
> +
> + efip = xfs_efi_init(tp->t_mountp, count);
> + ASSERT(efip != NULL);
> +
> + /*
> + * Get a log_item_desc to point at the new item.
> + */
> + xfs_trans_add_item(tp, &efip->efi_item);
> + return efip;
> +}
> +
> +/* Log a free extent to the intent item. */
> +STATIC void
> +xfs_extent_free_log_item(
> + struct xfs_trans *tp,
> + void *intent,
> + struct list_head *item)
> +{
> + struct xfs_efi_log_item *efip = intent;
> + struct xfs_extent_free_item *free;
> + uint next_extent;
> + struct xfs_extent *extp;
> +
> + free = container_of(item, struct xfs_extent_free_item, xefi_list);
> +
> + tp->t_flags |= XFS_TRANS_DIRTY;
> + set_bit(XFS_LI_DIRTY, &efip->efi_item.li_flags);
> +
> + /*
> + * atomic_inc_return gives us the value after the increment;
> + * we want to use it as an array index so we need to subtract 1 from
> + * it.
> + */
> + next_extent = atomic_inc_return(&efip->efi_next_extent) - 1;
> + ASSERT(next_extent < efip->efi_format.efi_nextents);
> + extp = &efip->efi_format.efi_extents[next_extent];
> + extp->ext_start = free->xefi_startblock;
> + extp->ext_len = free->xefi_blockcount;
> +}
> +
> +/* Get an EFD so we can process all the free extents. */
> +STATIC void *
> +xfs_extent_free_create_done(
> + struct xfs_trans *tp,
> + void *intent,
> + unsigned int count)
> +{
> + return xfs_trans_get_efd(tp, intent, count);
> +}
> +
> +/* Process a free extent. */
> +STATIC int
> +xfs_extent_free_finish_item(
> + struct xfs_trans *tp,
> + struct list_head *item,
> + void *done_item,
> + void **state)
> +{
> + struct xfs_extent_free_item *free;
> + int error;
> +
> + free = container_of(item, struct xfs_extent_free_item, xefi_list);
> + error = xfs_trans_free_extent(tp, done_item,
> + free->xefi_startblock,
> + free->xefi_blockcount,
> + &free->xefi_oinfo, free->xefi_skip_discard);
> + kmem_free(free);
> + return error;
> +}
> +
> +/* Abort all pending EFIs. */
> +STATIC void
> +xfs_extent_free_abort_intent(
> + void *intent)
> +{
> + xfs_efi_release(intent);
> +}
> +
> +/* Cancel a free extent. */
> +STATIC void
> +xfs_extent_free_cancel_item(
> + struct list_head *item)
> +{
> + struct xfs_extent_free_item *free;
> +
> + free = container_of(item, struct xfs_extent_free_item, xefi_list);
> + kmem_free(free);
> +}
> +
> +const struct xfs_defer_op_type xfs_extent_free_defer_type = {
> + .max_items = XFS_EFI_MAX_FAST_EXTENTS,
> + .diff_items = xfs_extent_free_diff_items,
> + .create_intent = xfs_extent_free_create_intent,
> + .abort_intent = xfs_extent_free_abort_intent,
> + .log_item = xfs_extent_free_log_item,
> + .create_done = xfs_extent_free_create_done,
> + .finish_item = xfs_extent_free_finish_item,
> + .cancel_item = xfs_extent_free_cancel_item,
> +};
> +
> +/*
> + * AGFL blocks are accounted differently in the reserve pools and are not
> + * inserted into the busy extent list.
> + */
> +STATIC int
> +xfs_agfl_free_finish_item(
> + struct xfs_trans *tp,
> + struct list_head *item,
> + void *done_item,
> + void **state)
> +{
> + struct xfs_mount *mp = tp->t_mountp;
> + struct xfs_efd_log_item *efdp = done_item;
> + struct xfs_extent_free_item *free;
> + struct xfs_extent *extp;
> + struct xfs_buf *agbp;
> + int error;
> + xfs_agnumber_t agno;
> + xfs_agblock_t agbno;
> + uint next_extent;
> +
> + free = container_of(item, struct xfs_extent_free_item, xefi_list);
> + ASSERT(free->xefi_blockcount == 1);
> + agno = XFS_FSB_TO_AGNO(mp, free->xefi_startblock);
> + agbno = XFS_FSB_TO_AGBNO(mp, free->xefi_startblock);
> +
> + trace_xfs_agfl_free_deferred(mp, agno, 0, agbno, free->xefi_blockcount);
> +
> + error = xfs_alloc_read_agf(mp, tp, agno, 0, &agbp);
> + if (!error)
> + error = xfs_free_agfl_block(tp, agno, agbno, agbp,
> + &free->xefi_oinfo);
> +
> + /*
> + * Mark the transaction dirty, even on error. This ensures the
> + * transaction is aborted, which:
> + *
> + * 1.) releases the EFI and frees the EFD
> + * 2.) shuts down the filesystem
> + */
> + tp->t_flags |= XFS_TRANS_DIRTY;
> + set_bit(XFS_LI_DIRTY, &efdp->efd_item.li_flags);
> +
> + next_extent = efdp->efd_next_extent;
> + ASSERT(next_extent < efdp->efd_format.efd_nextents);
> + extp = &(efdp->efd_format.efd_extents[next_extent]);
> + extp->ext_start = free->xefi_startblock;
> + extp->ext_len = free->xefi_blockcount;
> + efdp->efd_next_extent++;
> +
> + kmem_free(free);
> + return error;
> +}
> +
> +/* sub-type with special handling for AGFL deferred frees */
> +const struct xfs_defer_op_type xfs_agfl_free_defer_type = {
> + .max_items = XFS_EFI_MAX_FAST_EXTENTS,
> + .diff_items = xfs_extent_free_diff_items,
> + .create_intent = xfs_extent_free_create_intent,
> + .abort_intent = xfs_extent_free_abort_intent,
> + .log_item = xfs_extent_free_log_item,
> + .create_done = xfs_extent_free_create_done,
> + .finish_item = xfs_agfl_free_finish_item,
> + .cancel_item = xfs_extent_free_cancel_item,
> +};
> +
> /*
> * Process an extent free intent item that was recovered from
> * the log. We need to free the extents that it describes.
> diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h
> index 7a6ee0c2ce20..cc6549100176 100644
> --- a/fs/xfs/xfs_trans.h
> +++ b/fs/xfs/xfs_trans.h
> @@ -230,14 +230,6 @@ void xfs_trans_dirty_buf(struct xfs_trans *, struct xfs_buf *);
> bool xfs_trans_buf_is_dirty(struct xfs_buf *bp);
> void xfs_trans_log_inode(xfs_trans_t *, struct xfs_inode *, uint);
>
> -struct xfs_efd_log_item *xfs_trans_get_efd(struct xfs_trans *,
> - struct xfs_efi_log_item *,
> - uint);
> -int xfs_trans_free_extent(struct xfs_trans *,
> - struct xfs_efd_log_item *, xfs_fsblock_t,
> - xfs_extlen_t,
> - const struct xfs_owner_info *,
> - bool);
> int xfs_trans_commit(struct xfs_trans *);
> int xfs_trans_roll(struct xfs_trans **);
> int xfs_trans_roll_inode(struct xfs_trans **, struct xfs_inode *);
> diff --git a/fs/xfs/xfs_trans_extfree.c b/fs/xfs/xfs_trans_extfree.c
> deleted file mode 100644
> index 20ab1c9d758f..000000000000
> --- a/fs/xfs/xfs_trans_extfree.c
> +++ /dev/null
> @@ -1,260 +0,0 @@
> -// SPDX-License-Identifier: GPL-2.0
> -/*
> - * Copyright (c) 2000,2005 Silicon Graphics, Inc.
> - * All Rights Reserved.
> - */
> -#include "xfs.h"
> -#include "xfs_fs.h"
> -#include "xfs_shared.h"
> -#include "xfs_format.h"
> -#include "xfs_log_format.h"
> -#include "xfs_trans_resv.h"
> -#include "xfs_bit.h"
> -#include "xfs_mount.h"
> -#include "xfs_defer.h"
> -#include "xfs_trans.h"
> -#include "xfs_trans_priv.h"
> -#include "xfs_extfree_item.h"
> -#include "xfs_alloc.h"
> -#include "xfs_bmap.h"
> -#include "xfs_trace.h"
> -
> -/*
> - * Free an extent and log it to the EFD. Note that the transaction is marked
> - * dirty regardless of whether the extent free succeeds or fails to support the
> - * EFI/EFD lifecycle rules.
> - */
> -int
> -xfs_trans_free_extent(
> - struct xfs_trans *tp,
> - struct xfs_efd_log_item *efdp,
> - xfs_fsblock_t start_block,
> - xfs_extlen_t ext_len,
> - const struct xfs_owner_info *oinfo,
> - bool skip_discard)
> -{
> - struct xfs_mount *mp = tp->t_mountp;
> - struct xfs_extent *extp;
> - uint next_extent;
> - xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, start_block);
> - xfs_agblock_t agbno = XFS_FSB_TO_AGBNO(mp,
> - start_block);
> - int error;
> -
> - trace_xfs_bmap_free_deferred(tp->t_mountp, agno, 0, agbno, ext_len);
> -
> - error = __xfs_free_extent(tp, start_block, ext_len,
> - oinfo, XFS_AG_RESV_NONE, skip_discard);
> - /*
> - * Mark the transaction dirty, even on error. This ensures the
> - * transaction is aborted, which:
> - *
> - * 1.) releases the EFI and frees the EFD
> - * 2.) shuts down the filesystem
> - */
> - tp->t_flags |= XFS_TRANS_DIRTY;
> - set_bit(XFS_LI_DIRTY, &efdp->efd_item.li_flags);
> -
> - next_extent = efdp->efd_next_extent;
> - ASSERT(next_extent < efdp->efd_format.efd_nextents);
> - extp = &(efdp->efd_format.efd_extents[next_extent]);
> - extp->ext_start = start_block;
> - extp->ext_len = ext_len;
> - efdp->efd_next_extent++;
> -
> - return error;
> -}
> -
> -/* Sort bmap items by AG. */
> -static int
> -xfs_extent_free_diff_items(
> - void *priv,
> - struct list_head *a,
> - struct list_head *b)
> -{
> - struct xfs_mount *mp = priv;
> - struct xfs_extent_free_item *ra;
> - struct xfs_extent_free_item *rb;
> -
> - ra = container_of(a, struct xfs_extent_free_item, xefi_list);
> - rb = container_of(b, struct xfs_extent_free_item, xefi_list);
> - return XFS_FSB_TO_AGNO(mp, ra->xefi_startblock) -
> - XFS_FSB_TO_AGNO(mp, rb->xefi_startblock);
> -}
> -
> -/* Get an EFI. */
> -STATIC void *
> -xfs_extent_free_create_intent(
> - struct xfs_trans *tp,
> - unsigned int count)
> -{
> - struct xfs_efi_log_item *efip;
> -
> - ASSERT(tp != NULL);
> - ASSERT(count > 0);
> -
> - efip = xfs_efi_init(tp->t_mountp, count);
> - ASSERT(efip != NULL);
> -
> - /*
> - * Get a log_item_desc to point at the new item.
> - */
> - xfs_trans_add_item(tp, &efip->efi_item);
> - return efip;
> -}
> -
> -/* Log a free extent to the intent item. */
> -STATIC void
> -xfs_extent_free_log_item(
> - struct xfs_trans *tp,
> - void *intent,
> - struct list_head *item)
> -{
> - struct xfs_efi_log_item *efip = intent;
> - struct xfs_extent_free_item *free;
> - uint next_extent;
> - struct xfs_extent *extp;
> -
> - free = container_of(item, struct xfs_extent_free_item, xefi_list);
> -
> - tp->t_flags |= XFS_TRANS_DIRTY;
> - set_bit(XFS_LI_DIRTY, &efip->efi_item.li_flags);
> -
> - /*
> - * atomic_inc_return gives us the value after the increment;
> - * we want to use it as an array index so we need to subtract 1 from
> - * it.
> - */
> - next_extent = atomic_inc_return(&efip->efi_next_extent) - 1;
> - ASSERT(next_extent < efip->efi_format.efi_nextents);
> - extp = &efip->efi_format.efi_extents[next_extent];
> - extp->ext_start = free->xefi_startblock;
> - extp->ext_len = free->xefi_blockcount;
> -}
> -
> -/* Get an EFD so we can process all the free extents. */
> -STATIC void *
> -xfs_extent_free_create_done(
> - struct xfs_trans *tp,
> - void *intent,
> - unsigned int count)
> -{
> - return xfs_trans_get_efd(tp, intent, count);
> -}
> -
> -/* Process a free extent. */
> -STATIC int
> -xfs_extent_free_finish_item(
> - struct xfs_trans *tp,
> - struct list_head *item,
> - void *done_item,
> - void **state)
> -{
> - struct xfs_extent_free_item *free;
> - int error;
> -
> - free = container_of(item, struct xfs_extent_free_item, xefi_list);
> - error = xfs_trans_free_extent(tp, done_item,
> - free->xefi_startblock,
> - free->xefi_blockcount,
> - &free->xefi_oinfo, free->xefi_skip_discard);
> - kmem_free(free);
> - return error;
> -}
> -
> -/* Abort all pending EFIs. */
> -STATIC void
> -xfs_extent_free_abort_intent(
> - void *intent)
> -{
> - xfs_efi_release(intent);
> -}
> -
> -/* Cancel a free extent. */
> -STATIC void
> -xfs_extent_free_cancel_item(
> - struct list_head *item)
> -{
> - struct xfs_extent_free_item *free;
> -
> - free = container_of(item, struct xfs_extent_free_item, xefi_list);
> - kmem_free(free);
> -}
> -
> -const struct xfs_defer_op_type xfs_extent_free_defer_type = {
> - .max_items = XFS_EFI_MAX_FAST_EXTENTS,
> - .diff_items = xfs_extent_free_diff_items,
> - .create_intent = xfs_extent_free_create_intent,
> - .abort_intent = xfs_extent_free_abort_intent,
> - .log_item = xfs_extent_free_log_item,
> - .create_done = xfs_extent_free_create_done,
> - .finish_item = xfs_extent_free_finish_item,
> - .cancel_item = xfs_extent_free_cancel_item,
> -};
> -
> -/*
> - * AGFL blocks are accounted differently in the reserve pools and are not
> - * inserted into the busy extent list.
> - */
> -STATIC int
> -xfs_agfl_free_finish_item(
> - struct xfs_trans *tp,
> - struct list_head *item,
> - void *done_item,
> - void **state)
> -{
> - struct xfs_mount *mp = tp->t_mountp;
> - struct xfs_efd_log_item *efdp = done_item;
> - struct xfs_extent_free_item *free;
> - struct xfs_extent *extp;
> - struct xfs_buf *agbp;
> - int error;
> - xfs_agnumber_t agno;
> - xfs_agblock_t agbno;
> - uint next_extent;
> -
> - free = container_of(item, struct xfs_extent_free_item, xefi_list);
> - ASSERT(free->xefi_blockcount == 1);
> - agno = XFS_FSB_TO_AGNO(mp, free->xefi_startblock);
> - agbno = XFS_FSB_TO_AGBNO(mp, free->xefi_startblock);
> -
> - trace_xfs_agfl_free_deferred(mp, agno, 0, agbno, free->xefi_blockcount);
> -
> - error = xfs_alloc_read_agf(mp, tp, agno, 0, &agbp);
> - if (!error)
> - error = xfs_free_agfl_block(tp, agno, agbno, agbp,
> - &free->xefi_oinfo);
> -
> - /*
> - * Mark the transaction dirty, even on error. This ensures the
> - * transaction is aborted, which:
> - *
> - * 1.) releases the EFI and frees the EFD
> - * 2.) shuts down the filesystem
> - */
> - tp->t_flags |= XFS_TRANS_DIRTY;
> - set_bit(XFS_LI_DIRTY, &efdp->efd_item.li_flags);
> -
> - next_extent = efdp->efd_next_extent;
> - ASSERT(next_extent < efdp->efd_format.efd_nextents);
> - extp = &(efdp->efd_format.efd_extents[next_extent]);
> - extp->ext_start = free->xefi_startblock;
> - extp->ext_len = free->xefi_blockcount;
> - efdp->efd_next_extent++;
> -
> - kmem_free(free);
> - return error;
> -}
> -
> -
> -/* sub-type with special handling for AGFL deferred frees */
> -const struct xfs_defer_op_type xfs_agfl_free_defer_type = {
> - .max_items = XFS_EFI_MAX_FAST_EXTENTS,
> - .diff_items = xfs_extent_free_diff_items,
> - .create_intent = xfs_extent_free_create_intent,
> - .abort_intent = xfs_extent_free_abort_intent,
> - .log_item = xfs_extent_free_log_item,
> - .create_done = xfs_extent_free_create_done,
> - .finish_item = xfs_agfl_free_finish_item,
> - .cancel_item = xfs_extent_free_cancel_item,
> -};
> --
> 2.20.1
>
next prev parent reply other threads:[~2019-05-20 13:13 UTC|newest]
Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-17 7:30 misc log item related cleanups Christoph Hellwig
2019-05-17 7:31 ` [PATCH 01/20] xfs: fix a trivial comment typo in the xfs_trans_committed_bulk Christoph Hellwig
2019-05-17 14:04 ` Brian Foster
2019-05-20 22:08 ` Darrick J. Wong
2019-05-17 7:31 ` [PATCH 02/20] xfs: stop using XFS_LI_ABORTED as a parameter flag Christoph Hellwig
2019-05-17 14:04 ` Brian Foster
2019-05-20 6:03 ` Christoph Hellwig
2019-05-17 14:10 ` Eric Sandeen
2019-05-20 6:05 ` Christoph Hellwig
2019-05-20 22:08 ` Darrick J. Wong
2019-06-11 8:46 ` Christoph Hellwig
2019-05-17 7:31 ` [PATCH 03/20] xfs: don't require log items to implement optional methods Christoph Hellwig
2019-05-17 14:06 ` Brian Foster
2019-05-20 6:06 ` Christoph Hellwig
2019-05-17 7:31 ` [PATCH 04/20] xfs: remove the dummy iop_push implementation for inode creation items Christoph Hellwig
2019-05-17 14:07 ` Brian Foster
2019-05-17 7:31 ` [PATCH 05/20] xfs: remove the iop_push implementation for quota off items Christoph Hellwig
2019-05-17 14:08 ` Brian Foster
2019-05-20 6:09 ` Christoph Hellwig
2019-05-17 7:31 ` [PATCH 06/20] xfs: don't use xfs_trans_free_items in the commit path Christoph Hellwig
2019-05-17 14:08 ` Brian Foster
2019-05-17 7:31 ` [PATCH 07/20] xfs: split iop_unlock Christoph Hellwig
2019-05-17 17:49 ` Brian Foster
2019-05-20 6:10 ` Christoph Hellwig
2019-05-20 11:38 ` Brian Foster
2019-05-17 7:31 ` [PATCH 08/20] xfs: add a flag to release log items on commit Christoph Hellwig
2019-05-17 17:50 ` Brian Foster
2019-05-20 6:11 ` Christoph Hellwig
2019-05-17 7:31 ` [PATCH 09/20] xfs: don't cast inode_log_items to get the log_item Christoph Hellwig
2019-05-17 17:50 ` Brian Foster
2019-05-17 7:31 ` [PATCH 10/20] xfs: remove the xfs_log_item_t typedef Christoph Hellwig
2019-05-17 17:50 ` Brian Foster
2019-05-17 7:31 ` [PATCH 11/20] xfs: use a list_head for iclog callbacks Christoph Hellwig
2019-05-20 13:12 ` Brian Foster
2019-05-20 13:19 ` Christoph Hellwig
2019-05-20 13:25 ` Brian Foster
2019-05-20 13:27 ` Bryan Gurney
2019-05-20 13:31 ` Christoph Hellwig
2019-05-17 7:31 ` [PATCH 12/20] xfs: remove a pointless comment duplicated above all xfs_item_ops instances Christoph Hellwig
2019-05-20 13:12 ` Brian Foster
2019-05-17 7:31 ` [PATCH 13/20] xfs: merge xfs_efd_init into xfs_trans_get_efd Christoph Hellwig
2019-05-17 8:16 ` Nikolay Borisov
2019-05-17 8:27 ` Christoph Hellwig
2019-05-17 18:26 ` Eric Sandeen
2019-05-20 6:03 ` Christoph Hellwig
2019-05-20 13:12 ` Brian Foster
2019-05-17 7:31 ` [PATCH 14/20] xfs: merge xfs_cud_init into xfs_trans_get_cud Christoph Hellwig
2019-05-20 13:13 ` Brian Foster
2019-05-17 7:31 ` [PATCH 15/20] xfs: merge xfs_rud_init into xfs_trans_get_rud Christoph Hellwig
2019-05-20 13:13 ` Brian Foster
2019-05-17 7:31 ` [PATCH 16/20] xfs: merge xfs_bud_init into xfs_trans_get_bud Christoph Hellwig
2019-05-20 13:13 ` Brian Foster
2019-05-17 7:31 ` [PATCH 17/20] xfs: merge xfs_trans_extfree.c into xfs_extfree_item.c Christoph Hellwig
2019-05-20 13:13 ` Brian Foster [this message]
2019-05-17 7:31 ` [PATCH 18/20] xfs: merge xfs_trans_refcount.c into xfs_refcount_item.c Christoph Hellwig
2019-05-20 13:14 ` Brian Foster
2019-05-17 7:31 ` [PATCH 19/20] xfs: merge xfs_trans_rmap.c into xfs_rmap_item.c Christoph Hellwig
2019-05-20 13:14 ` Brian Foster
2019-05-17 7:31 ` [PATCH 20/20] xfs: merge xfs_trans_bmap.c into xfs_bmap_item.c Christoph Hellwig
2019-05-20 13:14 ` Brian Foster
-- strict thread matches above, loose matches on Subject: below --
2019-06-13 18:02 misc log item related cleanups v2 Christoph Hellwig
2019-06-13 18:02 ` [PATCH 17/20] xfs: merge xfs_trans_extfree.c into xfs_extfree_item.c Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190520131343.GH31317@bfoster \
--to=bfoster@redhat.com \
--cc=hch@lst.de \
--cc=linux-xfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox