From: Christoph Hellwig <hch@infradead.org>
To: "Darrick J. Wong" <djwong@kernel.org>
Cc: hch@lst.de, linux-xfs@vger.kernel.org
Subject: Re: [PATCH 36/37] xfs: react to fsdax failure notifications on the rt device
Date: Fri, 13 Dec 2024 00:29:01 -0800 [thread overview]
Message-ID: <Z1vwTZm_EqCJmwp0@infradead.org> (raw)
In-Reply-To: <173405123935.1181370.7404101961471776856.stgit@frogsfrogsfrogs>
On Thu, Dec 12, 2024 at 05:09:59PM -0800, Darrick J. Wong wrote:
> From: Darrick J. Wong <djwong@kernel.org>
>
> Now that we have reverse mapping for the realtime device, use the
> information to kill processes that have mappings to bad pmem.
This actually duplicates a lot of the code due to not taking advantage
of the xfs_group structure. Something like the patch below unifies
the code more which also obsoletes some of the work from the previous
patch:
diff --git a/fs/xfs/xfs_notify_failure.c b/fs/xfs/xfs_notify_failure.c
index 96d39e475d5a..ae5b9890e511 100644
--- a/fs/xfs/xfs_notify_failure.c
+++ b/fs/xfs/xfs_notify_failure.c
@@ -27,12 +27,6 @@
#include <linux/dax.h>
#include <linux/fs.h>
-enum xfs_failed_device {
- XFS_FAILED_DATADEV,
- XFS_FAILED_LOGDEV,
- XFS_FAILED_RTDEV,
-};
-
struct xfs_failure_info {
xfs_agblock_t startblock;
xfs_extlen_t blockcount;
@@ -163,126 +157,81 @@ xfs_dax_notify_failure_thaw(
}
static int
-xfs_dax_notify_ddev_failure(
- struct xfs_mount *mp,
- xfs_daddr_t daddr,
- xfs_daddr_t bblen,
- int mf_flags)
+xfs_dax_translate_range(
+ struct xfs_buftarg *btp,
+ u64 offset,
+ u64 len,
+ xfs_daddr_t *daddr,
+ uint64_t *bblen)
{
- struct xfs_failure_info notify = { .mf_flags = mf_flags };
- struct xfs_trans *tp = NULL;
- struct xfs_btree_cur *cur = NULL;
- struct xfs_buf *agf_bp = NULL;
- int error = 0;
- bool kernel_frozen = false;
- xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, daddr);
- xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, fsbno);
- xfs_fsblock_t end_fsbno = XFS_DADDR_TO_FSB(mp,
- daddr + bblen - 1);
- xfs_agnumber_t end_agno = XFS_FSB_TO_AGNO(mp, end_fsbno);
-
- if (mf_flags & MF_MEM_PRE_REMOVE) {
- xfs_info(mp, "Device is about to be removed!");
- /*
- * Freeze fs to prevent new mappings from being created.
- * - Keep going on if others already hold the kernel forzen.
- * - Keep going on if other errors too because this device is
- * starting to fail.
- * - If kernel frozen state is hold successfully here, thaw it
- * here as well at the end.
- */
- kernel_frozen = xfs_dax_notify_failure_freeze(mp) == 0;
- }
-
- error = xfs_trans_alloc_empty(mp, &tp);
- if (error)
- goto out;
-
- for (; agno <= end_agno; agno++) {
- struct xfs_rmap_irec ri_low = { };
- struct xfs_rmap_irec ri_high;
- struct xfs_agf *agf;
- struct xfs_perag *pag;
- xfs_agblock_t range_agend;
-
- pag = xfs_perag_get(mp, agno);
- error = xfs_alloc_read_agf(pag, tp, 0, &agf_bp);
- if (error) {
- xfs_perag_put(pag);
- break;
- }
-
- cur = xfs_rmapbt_init_cursor(mp, tp, agf_bp, pag);
-
- /*
- * Set the rmap range from ri_low to ri_high, which represents
- * a [start, end] where we looking for the files or metadata.
- */
- memset(&ri_high, 0xFF, sizeof(ri_high));
- ri_low.rm_startblock = XFS_FSB_TO_AGBNO(mp, fsbno);
- if (agno == end_agno)
- ri_high.rm_startblock = XFS_FSB_TO_AGBNO(mp, end_fsbno);
-
- agf = agf_bp->b_addr;
- range_agend = min(be32_to_cpu(agf->agf_length) - 1,
- ri_high.rm_startblock);
- notify.startblock = ri_low.rm_startblock;
- notify.blockcount = range_agend + 1 - ri_low.rm_startblock;
+ u64 dev_start = btp->bt_dax_part_off;
+ u64 dev_len = bdev_nr_bytes(btp->bt_bdev);
+ u64 dev_end = dev_start + dev_len - 1;
- error = xfs_rmap_query_range(cur, &ri_low, &ri_high,
- xfs_dax_failure_fn, ¬ify);
- xfs_btree_del_cursor(cur, error);
- xfs_trans_brelse(tp, agf_bp);
- xfs_perag_put(pag);
- if (error)
- break;
-
- fsbno = XFS_AGB_TO_FSB(mp, agno + 1, 0);
+ /* Notify failure on the whole device. */
+ if (offset == 0 && len == U64_MAX) {
+ offset = dev_start;
+ len = dev_len;
}
- xfs_trans_cancel(tp);
+ /* Ignore the range out of filesystem area */
+ if (offset + len - 1 < dev_start)
+ return -ENXIO;
+ if (offset > dev_end)
+ return -ENXIO;
- /*
- * Shutdown fs from a force umount in pre-remove case which won't fail,
- * so errors can be ignored. Otherwise, shutdown the filesystem with
- * CORRUPT flag if error occured or notify.want_shutdown was set during
- * RMAP querying.
- */
- if (mf_flags & MF_MEM_PRE_REMOVE)
- xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
- else if (error || notify.want_shutdown) {
- xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_ONDISK);
- if (!error)
- error = -EFSCORRUPTED;
+ /* Calculate the real range when it touches the boundary */
+ if (offset > dev_start)
+ offset -= dev_start;
+ else {
+ len -= dev_start - offset;
+ offset = 0;
}
+ if (offset + len - 1 > dev_end)
+ len = dev_end - offset + 1;
-out:
- /* Thaw the fs if it has been frozen before. */
- if (mf_flags & MF_MEM_PRE_REMOVE)
- xfs_dax_notify_failure_thaw(mp, kernel_frozen);
-
- return error;
+ *daddr = BTOBB(offset);
+ *bblen = BTOBB(len);
+ return 0;
}
-#ifdef CONFIG_XFS_RT
static int
-xfs_dax_notify_rtdev_failure(
+xfs_dax_notify_dev_failure(
struct xfs_mount *mp,
- xfs_daddr_t daddr,
- xfs_daddr_t bblen,
- int mf_flags)
+ u64 offset,
+ u64 len,
+ int mf_flags,
+ enum xfs_group_type type)
{
struct xfs_failure_info notify = { .mf_flags = mf_flags };
struct xfs_trans *tp = NULL;
struct xfs_btree_cur *cur = NULL;
int error = 0;
bool kernel_frozen = false;
- xfs_rtblock_t rtbno = xfs_daddr_to_rtb(mp, daddr);
- xfs_rtblock_t end_rtbno = xfs_daddr_to_rtb(mp,
- daddr + bblen - 1);
- xfs_rgnumber_t rgno = xfs_rtb_to_rgno(mp, rtbno);
- xfs_rgnumber_t end_rgno = xfs_rtb_to_rgno(mp, end_rtbno);
- xfs_rgblock_t start_rgbno = xfs_rtb_to_rgbno(mp, rtbno);
+ uint32_t start_gno, end_gno;
+ xfs_fsblock_t start_bno, end_bno;
+ xfs_daddr_t daddr;
+ uint64_t bblen;
+ struct xfs_group *xg;
+
+ if (!xfs_has_rmapbt(mp)) {
+ xfs_debug(mp, "notify_failure() needs rmapbt enabled!");
+ return -EOPNOTSUPP;
+ }
+
+ error = xfs_dax_translate_range(type == XG_TYPE_RTG ?
+ mp->m_rtdev_targp : mp->m_ddev_targp,
+ offset, len, &start_bno, &end_bno);
+ if (error)
+ return error;
+
+ if (type == XG_TYPE_RTG) {
+ start_bno = xfs_daddr_to_rtb(mp, daddr);
+ end_bno = xfs_daddr_to_rtb(mp, daddr + bblen - 1);
+ } else {
+ start_bno = XFS_DADDR_TO_FSB(mp, daddr);
+ end_bno = XFS_DADDR_TO_FSB(mp, daddr + bblen - 1);
+ }
if (mf_flags & MF_MEM_PRE_REMOVE) {
xfs_info(mp, "Device is about to be removed!");
@@ -301,43 +250,58 @@ xfs_dax_notify_rtdev_failure(
if (error)
goto out;
- for (; rgno <= end_rgno; rgno++) {
- struct xfs_rmap_irec ri_low = {
- .rm_startblock = start_rgbno,
- };
+ start_gno = xfs_fsb_to_gno(mp, start_bno, type);
+ end_gno = xfs_fsb_to_gno(mp, end_bno, type);
+ while ((xg = xfs_group_next_range(mp, xg, start_gno, end_gno, type))) {
+ struct xfs_buf *agf_bp = NULL;
+ struct xfs_rtgroup *rtg = NULL;
+ struct xfs_rmap_irec ri_low = { };
struct xfs_rmap_irec ri_high;
- struct xfs_rtgroup *rtg;
- xfs_rgblock_t range_rgend;
- rtg = xfs_rtgroup_get(mp, rgno);
- if (!rtg)
- break;
+ if (type == XG_TYPE_AG) {
+ struct xfs_perag *pag = to_perag(xg);
+
+ error = xfs_alloc_read_agf(pag, tp, 0, &agf_bp);
+ if (error) {
+ xfs_perag_put(pag);
+ break;
+ }
- xfs_rtgroup_lock(rtg, XFS_RTGLOCK_RMAP);
- cur = xfs_rtrmapbt_init_cursor(tp, rtg);
+ cur = xfs_rmapbt_init_cursor(mp, tp, agf_bp, pag);
+ } else {
+ rtg = to_rtg(xg);
+ xfs_rtgroup_lock(rtg, XFS_RTGLOCK_RMAP);
+ cur = xfs_rtrmapbt_init_cursor(tp, rtg);
+ }
/*
* Set the rmap range from ri_low to ri_high, which represents
* a [start, end] where we looking for the files or metadata.
*/
memset(&ri_high, 0xFF, sizeof(ri_high));
- if (rgno == end_rgno)
- ri_high.rm_startblock = xfs_rtb_to_rgbno(mp, end_rtbno);
+ if (xg->xg_gno == start_gno)
+ ri_low.rm_startblock =
+ xfs_fsb_to_gbno(mp, start_bno, type);
+ if (xg->xg_gno == end_gno)
+ ri_high.rm_startblock =
+ xfs_fsb_to_gbno(mp, end_bno, type);
- range_rgend = min(rtg->rtg_group.xg_block_count - 1,
- ri_high.rm_startblock);
notify.startblock = ri_low.rm_startblock;
- notify.blockcount = range_rgend + 1 - ri_low.rm_startblock;
+ notify.blockcount = min(xg->xg_block_count,
+ ri_high.rm_startblock + 1) -
+ ri_low.rm_startblock;
error = xfs_rmap_query_range(cur, &ri_low, &ri_high,
xfs_dax_failure_fn, ¬ify);
xfs_btree_del_cursor(cur, error);
- xfs_rtgroup_unlock(rtg, XFS_RTGLOCK_RMAP);
- xfs_rtgroup_put(rtg);
- if (error)
+ if (agf_bp)
+ xfs_trans_brelse(tp, agf_bp);
+ if (rtg)
+ xfs_rtgroup_unlock(rtg, XFS_RTGLOCK_RMAP);
+ if (error) {
+ xfs_group_put(xg);
break;
-
- start_rgbno = 0;
+ }
}
xfs_trans_cancel(tp);
@@ -363,65 +327,6 @@ xfs_dax_notify_rtdev_failure(
return error;
}
-#else
-# define xfs_dax_notify_rtdev_failure(...) (-ENOSYS)
-#endif
-
-static int
-xfs_dax_translate_range(
- struct xfs_mount *mp,
- struct dax_device *dax_dev,
- u64 offset,
- u64 len,
- enum xfs_failed_device *fdev,
- xfs_daddr_t *daddr,
- uint64_t *bbcount)
-{
- struct xfs_buftarg *btp;
- u64 ddev_start;
- u64 ddev_end;
-
- if (mp->m_rtdev_targp && mp->m_rtdev_targp->bt_daxdev == dax_dev) {
- *fdev = XFS_FAILED_RTDEV;
- btp = mp->m_rtdev_targp;
- } else if (mp->m_logdev_targp != mp->m_ddev_targp &&
- mp->m_logdev_targp->bt_daxdev == dax_dev) {
- *fdev = XFS_FAILED_LOGDEV;
- btp = mp->m_logdev_targp;
- } else {
- *fdev = XFS_FAILED_DATADEV;
- btp = mp->m_ddev_targp;
- }
-
- ddev_start = btp->bt_dax_part_off;
- ddev_end = ddev_start + bdev_nr_bytes(btp->bt_bdev) - 1;
-
- /* Notify failure on the whole device. */
- if (offset == 0 && len == U64_MAX) {
- offset = ddev_start;
- len = bdev_nr_bytes(btp->bt_bdev);
- }
-
- /* Ignore the range out of filesystem area */
- if (offset + len - 1 < ddev_start)
- return -ENXIO;
- if (offset > ddev_end)
- return -ENXIO;
-
- /* Calculate the real range when it touches the boundary */
- if (offset > ddev_start)
- offset -= ddev_start;
- else {
- len -= ddev_start - offset;
- offset = 0;
- }
- if (offset + len - 1 > ddev_end)
- len = ddev_end - offset + 1;
-
- *daddr = BTOBB(offset);
- *bbcount = BTOBB(len);
- return 0;
-}
static int
xfs_dax_notify_failure(
@@ -431,22 +336,14 @@ xfs_dax_notify_failure(
int mf_flags)
{
struct xfs_mount *mp = dax_holder(dax_dev);
- enum xfs_failed_device fdev;
- xfs_daddr_t daddr;
- uint64_t bbcount;
- int error;
if (!(mp->m_super->s_flags & SB_BORN)) {
xfs_warn(mp, "filesystem is not ready for notify_failure()!");
return -EIO;
}
- error = xfs_dax_translate_range(mp, dax_dev, offset, len, &fdev,
- &daddr, &bbcount);
- if (error)
- return error;
-
- if (fdev == XFS_FAILED_LOGDEV) {
+ if (mp->m_logdev_targp != mp->m_ddev_targp &&
+ mp->m_logdev_targp->bt_daxdev == dax_dev) {
/*
* In the pre-remove case the failure notification is attempting
* to trigger a force unmount. The expectation is that the
@@ -460,15 +357,9 @@ xfs_dax_notify_failure(
return -EFSCORRUPTED;
}
- if (!xfs_has_rmapbt(mp)) {
- xfs_debug(mp, "notify_failure() needs rmapbt enabled!");
- return -EOPNOTSUPP;
- }
-
- if (fdev == XFS_FAILED_RTDEV)
- return xfs_dax_notify_rtdev_failure(mp, daddr, bbcount,
- mf_flags);
- return xfs_dax_notify_ddev_failure(mp, daddr, bbcount, mf_flags);
+ return xfs_dax_notify_dev_failure(mp, offset, len, mf_flags,
+ (mp->m_rtdev_targp && mp->m_rtdev_targp->bt_daxdev == dax_dev) ?
+ XG_TYPE_RTG : XG_TYPE_AG);
}
const struct dax_holder_operations xfs_dax_holder_operations = {
next prev parent reply other threads:[~2024-12-13 8:29 UTC|newest]
Thread overview: 214+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-13 0:53 [PATCHBOMB 6.14 v6.0] xfs: realtime rmap and reflink Darrick J. Wong
2024-12-13 0:56 ` [PATCHSET v6.0 1/5] xfs: refactor btrees to support records in inode root Darrick J. Wong
2024-12-13 0:58 ` [PATCH 1/8] xfs: tidy up xfs_iroot_realloc Darrick J. Wong
2024-12-13 6:03 ` Christoph Hellwig
2024-12-13 0:58 ` [PATCH 2/8] xfs: refactor the inode fork memory allocation functions Darrick J. Wong
2024-12-13 6:05 ` Christoph Hellwig
2024-12-17 19:43 ` Darrick J. Wong
2024-12-13 0:58 ` [PATCH 3/8] xfs: make xfs_iroot_realloc take the new numrecs instead of deltas Darrick J. Wong
2024-12-13 6:06 ` Christoph Hellwig
2024-12-13 0:59 ` [PATCH 4/8] xfs: make xfs_iroot_realloc a bmap btree function Darrick J. Wong
2024-12-13 6:07 ` Christoph Hellwig
2024-12-13 0:59 ` [PATCH 5/8] xfs: tidy up xfs_bmap_broot_realloc a bit Darrick J. Wong
2024-12-13 6:07 ` Christoph Hellwig
2024-12-13 0:59 ` [PATCH 6/8] xfs: hoist the node iroot update code out of xfs_btree_new_iroot Darrick J. Wong
2024-12-13 6:08 ` Christoph Hellwig
2024-12-13 6:09 ` Christoph Hellwig
2024-12-13 0:59 ` [PATCH 7/8] xfs: hoist the node iroot update code out of xfs_btree_kill_iroot Darrick J. Wong
2024-12-13 6:09 ` Christoph Hellwig
2024-12-13 1:00 ` [PATCH 8/8] xfs: support storing records in the inode core root Darrick J. Wong
2024-12-13 6:10 ` Christoph Hellwig
2024-12-13 0:57 ` [PATCHSET v6.0 2/5] xfs: enable in-core block reservation for rt metadata Darrick J. Wong
2024-12-13 1:00 ` [PATCH 1/2] xfs: prepare to reuse the dquot pointer space in struct xfs_inode Darrick J. Wong
2024-12-13 1:00 ` [PATCH 2/2] xfs: allow inode-based btrees to reserve space in the data device Darrick J. Wong
2024-12-13 6:11 ` Christoph Hellwig
2024-12-17 19:58 ` Darrick J. Wong
2024-12-18 6:54 ` Christoph Hellwig
2024-12-13 0:57 ` [PATCHSET v6.0 3/5] xfs: realtime reverse-mapping support Darrick J. Wong
2024-12-13 1:00 ` [PATCH 01/37] xfs: add some rtgroup inode helpers Darrick J. Wong
2024-12-13 6:11 ` Christoph Hellwig
2024-12-13 1:01 ` [PATCH 02/37] xfs: prepare rmap btree cursor tracepoints for realtime Darrick J. Wong
2024-12-13 6:12 ` Christoph Hellwig
2024-12-13 1:01 ` [PATCH 03/37] xfs: simplify the xfs_rmap_{alloc,free}_extent calling conventions Darrick J. Wong
2024-12-13 6:20 ` Christoph Hellwig
2024-12-13 1:01 ` [PATCH 04/37] xfs: introduce realtime rmap btree ondisk definitions Darrick J. Wong
2024-12-13 6:23 ` Christoph Hellwig
2024-12-17 20:02 ` Darrick J. Wong
2024-12-13 1:01 ` [PATCH 05/37] xfs: realtime rmap btree transaction reservations Darrick J. Wong
2024-12-13 6:24 ` Christoph Hellwig
2024-12-13 1:02 ` [PATCH 06/37] xfs: add realtime rmap btree operations Darrick J. Wong
2024-12-13 6:24 ` Christoph Hellwig
2024-12-13 1:02 ` [PATCH 07/37] xfs: prepare rmap functions to deal with rtrmapbt Darrick J. Wong
2024-12-13 6:25 ` Christoph Hellwig
2024-12-13 1:02 ` [PATCH 08/37] xfs: add a realtime flag to the rmap update log redo items Darrick J. Wong
2024-12-13 6:26 ` Christoph Hellwig
2024-12-13 6:26 ` Christoph Hellwig
2024-12-13 1:02 ` [PATCH 09/37] xfs: support recovering rmap intent items targetting realtime extents Darrick J. Wong
2024-12-13 6:28 ` Christoph Hellwig
2024-12-13 1:03 ` [PATCH 10/37] xfs: pretty print metadata file types in error messages Darrick J. Wong
2024-12-13 6:30 ` Christoph Hellwig
2024-12-17 20:18 ` Darrick J. Wong
2024-12-13 1:03 ` [PATCH 11/37] xfs: support file data forks containing metadata btrees Darrick J. Wong
2024-12-13 6:49 ` Christoph Hellwig
2024-12-13 1:03 ` [PATCH 12/37] xfs: add realtime reverse map inode to metadata directory Darrick J. Wong
2024-12-13 6:49 ` Christoph Hellwig
2024-12-13 1:03 ` [PATCH 13/37] xfs: add metadata reservations for realtime rmap btrees Darrick J. Wong
2024-12-13 6:50 ` Christoph Hellwig
2024-12-13 1:04 ` [PATCH 14/37] xfs: wire up a new metafile type for the realtime rmap Darrick J. Wong
2024-12-13 7:14 ` Christoph Hellwig
2024-12-13 1:04 ` [PATCH 15/37] xfs: wire up rmap map and unmap to the realtime rmapbt Darrick J. Wong
2024-12-13 6:51 ` Christoph Hellwig
2024-12-13 1:04 ` [PATCH 16/37] xfs: create routine to allocate and initialize a realtime rmap btree inode Darrick J. Wong
2024-12-13 6:52 ` Christoph Hellwig
2024-12-13 1:05 ` [PATCH 17/37] xfs: wire up getfsmap to the realtime reverse mapping btree Darrick J. Wong
2024-12-13 6:53 ` Christoph Hellwig
2024-12-13 1:05 ` [PATCH 18/37] xfs: check that the rtrmapbt maxlevels doesn't increase when growing fs Darrick J. Wong
2024-12-13 6:53 ` Christoph Hellwig
2024-12-13 1:05 ` [PATCH 19/37] xfs: report realtime rmap btree corruption errors to the health system Darrick J. Wong
2024-12-13 6:54 ` Christoph Hellwig
2024-12-13 1:05 ` [PATCH 20/37] xfs: allow queued realtime intents to drain before scrubbing Darrick J. Wong
2024-12-13 7:14 ` Christoph Hellwig
2024-12-13 1:06 ` [PATCH 21/37] xfs: scrub the realtime rmapbt Darrick J. Wong
2024-12-13 7:15 ` Christoph Hellwig
2024-12-13 1:06 ` [PATCH 22/37] xfs: cross-reference realtime bitmap to realtime rmapbt scrubber Darrick J. Wong
2024-12-13 7:15 ` Christoph Hellwig
2024-12-13 1:06 ` [PATCH 23/37] xfs: cross-reference the realtime rmapbt Darrick J. Wong
2024-12-13 7:16 ` Christoph Hellwig
2024-12-13 1:06 ` [PATCH 24/37] xfs: scan rt rmap when we're doing an intense rmap check of bmbt mappings Darrick J. Wong
2024-12-13 7:17 ` Christoph Hellwig
2024-12-13 1:07 ` [PATCH 25/37] xfs: scrub the metadir path of rt rmap btree files Darrick J. Wong
2024-12-13 7:17 ` Christoph Hellwig
2024-12-13 1:07 ` [PATCH 26/37] xfs: walk the rt reverse mapping tree when rebuilding rmap Darrick J. Wong
2024-12-13 7:18 ` Christoph Hellwig
2024-12-13 1:07 ` [PATCH 27/37] xfs: online repair of realtime file bmaps Darrick J. Wong
2024-12-13 7:19 ` Christoph Hellwig
2024-12-17 20:25 ` Darrick J. Wong
2024-12-18 6:54 ` Christoph Hellwig
2024-12-13 1:07 ` [PATCH 28/37] xfs: repair inodes that have realtime extents Darrick J. Wong
2024-12-13 7:19 ` Christoph Hellwig
2024-12-13 1:08 ` [PATCH 29/37] xfs: repair rmap btree inodes Darrick J. Wong
2024-12-13 7:19 ` Christoph Hellwig
2024-12-13 1:08 ` [PATCH 30/37] xfs: online repair of realtime bitmaps for a realtime group Darrick J. Wong
2024-12-13 7:20 ` Christoph Hellwig
2024-12-13 1:08 ` [PATCH 31/37] xfs: support repairing metadata btrees rooted in metadir inodes Darrick J. Wong
2024-12-13 7:23 ` Christoph Hellwig
2024-12-13 1:08 ` [PATCH 32/37] xfs: online repair of the realtime rmap btree Darrick J. Wong
2024-12-13 7:29 ` Christoph Hellwig
2024-12-17 20:41 ` Darrick J. Wong
2024-12-18 6:55 ` Christoph Hellwig
2024-12-13 1:09 ` [PATCH 33/37] xfs: create a shadow rmap btree during realtime rmap repair Darrick J. Wong
2024-12-13 7:29 ` Christoph Hellwig
2024-12-13 1:09 ` [PATCH 34/37] xfs: hook live realtime rmap operations during a repair operation Darrick J. Wong
2024-12-13 7:34 ` Christoph Hellwig
2024-12-13 1:09 ` [PATCH 35/37] xfs: clean up device translation in xfs_dax_notify_failure Darrick J. Wong
2024-12-13 1:09 ` [PATCH 36/37] xfs: react to fsdax failure notifications on the rt device Darrick J. Wong
2024-12-13 8:29 ` Christoph Hellwig [this message]
2024-12-13 1:10 ` [PATCH 37/37] xfs: enable realtime rmap btree Darrick J. Wong
2024-12-13 0:57 ` [PATCHSET v6.0 4/5] xfs: reflink on the realtime device Darrick J. Wong
2024-12-13 1:10 ` [PATCH 01/43] xfs: prepare refcount btree cursor tracepoints for realtime Darrick J. Wong
2024-12-13 9:06 ` Christoph Hellwig
2024-12-13 1:10 ` [PATCH 02/43] xfs: namespace the maximum length/refcount symbols Darrick J. Wong
2024-12-13 9:06 ` Christoph Hellwig
2024-12-13 1:11 ` [PATCH 03/43] xfs: introduce realtime refcount btree ondisk definitions Darrick J. Wong
2024-12-13 9:08 ` Christoph Hellwig
2024-12-17 20:44 ` Darrick J. Wong
2024-12-13 1:11 ` [PATCH 04/43] xfs: realtime refcount btree transaction reservations Darrick J. Wong
2024-12-13 9:08 ` Christoph Hellwig
2024-12-13 1:11 ` [PATCH 05/43] xfs: add realtime refcount btree operations Darrick J. Wong
2024-12-13 9:09 ` Christoph Hellwig
2024-12-13 1:11 ` [PATCH 06/43] xfs: prepare refcount functions to deal with rtrefcountbt Darrick J. Wong
2024-12-13 9:09 ` Christoph Hellwig
2024-12-13 1:12 ` [PATCH 07/43] xfs: add a realtime flag to the refcount update log redo items Darrick J. Wong
2024-12-13 9:10 ` Christoph Hellwig
2024-12-13 1:12 ` [PATCH 08/43] xfs: support recovering refcount intent items targetting realtime extents Darrick J. Wong
2024-12-13 9:10 ` Christoph Hellwig
2024-12-13 1:12 ` [PATCH 09/43] xfs: add realtime refcount btree block detection to log recovery Darrick J. Wong
2024-12-13 9:10 ` Christoph Hellwig
2024-12-13 1:12 ` [PATCH 10/43] xfs: add realtime refcount btree inode to metadata directory Darrick J. Wong
2024-12-13 9:10 ` Christoph Hellwig
2024-12-13 1:13 ` [PATCH 11/43] xfs: add metadata reservations for realtime refcount btree Darrick J. Wong
2024-12-13 9:11 ` Christoph Hellwig
2024-12-13 1:13 ` [PATCH 12/43] xfs: wire up a new metafile type for the realtime refcount Darrick J. Wong
2024-12-13 9:11 ` Christoph Hellwig
2024-12-13 1:13 ` [PATCH 13/43] xfs: refactor xfs_reflink_find_shared Darrick J. Wong
2024-12-13 1:13 ` [PATCH 14/43] xfs: wire up realtime refcount btree cursors Darrick J. Wong
2024-12-13 9:12 ` Christoph Hellwig
2024-12-13 9:12 ` Christoph Hellwig
2024-12-13 1:14 ` [PATCH 15/43] xfs: create routine to allocate and initialize a realtime refcount btree inode Darrick J. Wong
2024-12-13 9:12 ` Christoph Hellwig
2024-12-13 1:14 ` [PATCH 16/43] xfs: update rmap to allow cow staging extents in the rt rmap Darrick J. Wong
2024-12-13 9:13 ` Christoph Hellwig
2024-12-13 1:14 ` [PATCH 17/43] xfs: compute rtrmap btree max levels when reflink enabled Darrick J. Wong
2024-12-13 9:13 ` Christoph Hellwig
2024-12-13 1:14 ` [PATCH 18/43] xfs: refactor reflink quota updates Darrick J. Wong
2024-12-13 9:13 ` Christoph Hellwig
2024-12-13 1:15 ` [PATCH 19/43] xfs: enable CoW for realtime data Darrick J. Wong
2024-12-13 9:14 ` Christoph Hellwig
2024-12-13 1:15 ` [PATCH 20/43] xfs: enable sharing of realtime file blocks Darrick J. Wong
2024-12-13 9:14 ` Christoph Hellwig
2024-12-13 1:15 ` [PATCH 21/43] xfs: allow inodes to have the realtime and reflink flags Darrick J. Wong
2024-12-13 9:15 ` Christoph Hellwig
2024-12-13 1:15 ` [PATCH 22/43] xfs: recover CoW leftovers in the realtime volume Darrick J. Wong
2024-12-13 9:15 ` Christoph Hellwig
2024-12-13 1:16 ` [PATCH 23/43] xfs: fix xfs_get_extsz_hint behavior with realtime alwayscow files Darrick J. Wong
2024-12-13 9:16 ` Christoph Hellwig
2024-12-13 1:16 ` [PATCH 24/43] xfs: apply rt extent alignment constraints to CoW extsize hint Darrick J. Wong
2024-12-13 9:16 ` Christoph Hellwig
2024-12-13 1:16 ` [PATCH 25/43] xfs: enable extent size hints for CoW operations Darrick J. Wong
2024-12-13 9:17 ` Christoph Hellwig
2024-12-13 1:17 ` [PATCH 26/43] xfs: check that the rtrefcount maxlevels doesn't increase when growing fs Darrick J. Wong
2024-12-13 9:17 ` Christoph Hellwig
2024-12-13 1:17 ` [PATCH 27/43] xfs: report realtime refcount btree corruption errors to the health system Darrick J. Wong
2024-12-13 9:17 ` Christoph Hellwig
2024-12-13 1:17 ` [PATCH 28/43] xfs: scrub the realtime refcount btree Darrick J. Wong
2024-12-13 9:18 ` Christoph Hellwig
2024-12-17 20:55 ` Darrick J. Wong
2024-12-18 6:55 ` Christoph Hellwig
2024-12-13 1:17 ` [PATCH 29/43] xfs: cross-reference checks with the rt " Darrick J. Wong
2024-12-13 9:18 ` Christoph Hellwig
2024-12-13 1:18 ` [PATCH 30/43] xfs: allow overlapping rtrmapbt records for shared data extents Darrick J. Wong
2024-12-13 9:19 ` Christoph Hellwig
2024-12-13 1:18 ` [PATCH 31/43] xfs: check reference counts of gaps between rt refcount records Darrick J. Wong
2024-12-13 9:19 ` Christoph Hellwig
2024-12-13 1:18 ` [PATCH 32/43] xfs: allow dquot rt block count to exceed rt blocks on reflink fs Darrick J. Wong
2024-12-13 9:19 ` Christoph Hellwig
2024-12-13 1:18 ` [PATCH 33/43] xfs: detect and repair misaligned rtinherit directory cowextsize hints Darrick J. Wong
2024-12-13 9:20 ` Christoph Hellwig
2024-12-13 1:19 ` [PATCH 34/43] xfs: scrub the metadir path of rt refcount btree files Darrick J. Wong
2024-12-13 9:20 ` Christoph Hellwig
2024-12-13 1:19 ` [PATCH 35/43] xfs: don't flag quota rt block usage on rtreflink filesystems Darrick J. Wong
2024-12-13 9:20 ` Christoph Hellwig
2024-12-13 1:19 ` [PATCH 36/43] xfs: check new rtbitmap records against rt refcount btree Darrick J. Wong
2024-12-13 9:21 ` Christoph Hellwig
2024-12-13 1:19 ` [PATCH 37/43] xfs: walk the rt reference count tree when rebuilding rmap Darrick J. Wong
2024-12-13 1:20 ` [PATCH 38/43] xfs: capture realtime CoW staging extents when rebuilding rt rmapbt Darrick J. Wong
2024-12-13 9:21 ` Christoph Hellwig
2024-12-13 1:20 ` [PATCH 39/43] xfs: online repair of the realtime refcount btree Darrick J. Wong
2024-12-13 9:22 ` Christoph Hellwig
2024-12-13 1:20 ` [PATCH 40/43] xfs: repair inodes that have a refcount btree in the data fork Darrick J. Wong
2024-12-13 9:22 ` Christoph Hellwig
2024-12-13 1:20 ` [PATCH 41/43] xfs: check for shared rt extents when rebuilding rt file's " Darrick J. Wong
2024-12-13 9:23 ` Christoph Hellwig
2024-12-13 1:21 ` [PATCH 42/43] xfs: fix CoW forks for realtime files Darrick J. Wong
2024-12-13 9:24 ` Christoph Hellwig
2024-12-13 1:21 ` [PATCH 43/43] xfs: enable realtime reflink Darrick J. Wong
2024-12-13 9:25 ` Christoph Hellwig
2024-12-17 20:57 ` Darrick J. Wong
2024-12-13 0:57 ` [PATCHSET v6.0 5/5] xfs: reflink with large realtime extents Darrick J. Wong
2024-12-13 1:21 ` [PATCH 01/11] vfs: explicitly pass the block size to the remap prep function Darrick J. Wong
2024-12-13 1:21 ` [PATCH 02/11] iomap: allow zeroing of written extents beyond EOF Darrick J. Wong
2024-12-13 1:22 ` [PATCH 03/11] xfs: convert partially written rt file extents to completely written Darrick J. Wong
2024-12-13 1:22 ` [PATCH 04/11] xfs: enable CoW when rt extent size is larger than 1 block Darrick J. Wong
2024-12-13 1:22 ` [PATCH 05/11] xfs: forcibly convert unwritten blocks within an rt extent before sharing Darrick J. Wong
2024-12-13 1:23 ` [PATCH 06/11] xfs: add some tracepoints for writeback Darrick J. Wong
2024-12-13 1:23 ` [PATCH 07/11] xfs: extend writeback requests to handle rt cow correctly Darrick J. Wong
2024-12-13 1:23 ` [PATCH 08/11] xfs: enable extent size hints for CoW when rtextsize > 1 Darrick J. Wong
2024-12-13 1:23 ` [PATCH 09/11] xfs: allow reflink on the rt volume when extent size is larger than 1 rt block Darrick J. Wong
2024-12-13 1:24 ` [PATCH 10/11] xfs: fix integer overflow when validating extent size hints Darrick J. Wong
2024-12-13 1:24 ` [PATCH 11/11] xfs: support realtime reflink with an extent size that isn't a power of 2 Darrick J. Wong
2024-12-13 8:30 ` [PATCHSET v6.0 5/5] xfs: reflink with large realtime extents Christoph Hellwig
2024-12-17 21:05 ` Darrick J. Wong
2024-12-19 19:14 ` [PATCHBOMB 6.14 v6.1] xfs: realtime rmap and reflink Darrick J. Wong
-- strict thread matches above, loose matches on Subject: below --
2024-12-19 19:19 [PATCHSET v6.1 4/5] xfs: realtime reverse-mapping support Darrick J. Wong
2024-12-19 19:32 ` [PATCH 36/37] xfs: react to fsdax failure notifications on the rt device Darrick J. Wong
2024-12-20 6:41 ` Christoph Hellwig
2024-12-23 22:53 [PATCHSET v6.2 4/5] xfs: realtime reverse-mapping support Darrick J. Wong
2024-12-23 23:06 ` [PATCH 36/37] xfs: react to fsdax failure notifications on the rt device Darrick J. Wong
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=Z1vwTZm_EqCJmwp0@infradead.org \
--to=hch@infradead.org \
--cc=djwong@kernel.org \
--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