From: "Darrick J. Wong" <djwong@kernel.org>
To: Andrey Albershteyn <aalbersh@redhat.com>
Cc: linux-xfs@vger.kernel.org, Christoph Hellwig <hch@infradead.org>
Subject: [PATCHBOMB v6.2] xfsprogs: metadata directories and realtime groups
Date: Mon, 23 Dec 2024 13:29:04 -0800 [thread overview]
Message-ID: <20241223212904.GQ6174@frogsfrogsfrogs> (raw)
Hi Andrey,
This patchbomb completes the review of userspace support for the
metadata directory tree and realtime allocation group code that was
merged into kernel 6.13-rc1. I now submit this for xfsprogs 6.13.
As with last time, I'm presenting the libxfs sync for 6.13 a bit
differently than I've done traditionally. Whereas I usually do all the
kernel sync and only then go to work on the surrounding utilities, I
noticed that the conversion of xfs_perag to be a subclass of generic
xfs_group objects and the introduction of xfs_rtgroup objects causes a
lot of changes in the utilities.
As a result, I decided that it'd be easier to take care of the libxfs
sync for only the metadata directory tree code and the utility changes
*before* moving on to the allocation groups restructuring. That's why
there are nine patchsets instead of five. I hope that makes it easier
to tackle.
Note that this is /not/ the last code I intend to submit for xfsprogs
6.13 -- I found a few more bugs while examining Christoph's zoned
storage support code and will submit those when I return from vacation.
This patchbomb merely covers everything that is ready for merge.
As always, you can browse / pull the branch from here:
https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfsprogs-dev.git/log/?h=realtime-quotas_2024-12-23
--D
next reply other threads:[~2024-12-23 21:29 UTC|newest]
Thread overview: 213+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-23 21:29 Darrick J. Wong [this message]
2024-12-23 21:34 ` [PATCHSET 1/8] xfsprogs: bug fixes for 6.12 Darrick J. Wong
2024-12-23 21:36 ` [PATCH 1/3] xfs_repair: fix maximum file offset comparison Darrick J. Wong
2024-12-23 21:36 ` [PATCH 2/3] man: fix ioctl_xfs_commit_range man page install Darrick J. Wong
2024-12-23 21:37 ` [PATCH 3/3] man: document the -n parent mkfs option Darrick J. Wong
2024-12-23 21:34 ` [PATCHSET v6.2 2/8] libxfs: metadata inode directory trees Darrick J. Wong
2024-12-23 21:37 ` [PATCH 01/36] xfs: remove the redundant xfs_alloc_log_agf Darrick J. Wong
2024-12-23 21:37 ` [PATCH 02/36] xfs: sb_spino_align is not verified Darrick J. Wong
2024-12-23 21:37 ` [PATCH 03/36] xfs: remove the unused pagb_count field in struct xfs_perag Darrick J. Wong
2024-12-23 21:38 ` [PATCH 04/36] xfs: remove the unused pag_active_wq " Darrick J. Wong
2024-12-23 21:38 ` [PATCH 05/36] xfs: pass a pag to xfs_difree_inode_chunk Darrick J. Wong
2024-12-23 21:38 ` [PATCH 06/36] xfs: remove the agno argument to xfs_free_ag_extent Darrick J. Wong
2024-12-23 21:38 ` [PATCH 07/36] xfs: add xfs_agbno_to_fsb and xfs_agbno_to_daddr helpers Darrick J. Wong
2024-12-23 21:39 ` [PATCH 08/36] xfs: add a xfs_agino_to_ino helper Darrick J. Wong
2024-12-23 21:39 ` [PATCH 09/36] xfs: pass a pag to xfs_extent_busy_{search,reuse} Darrick J. Wong
2024-12-23 21:39 ` [PATCH 10/36] xfs: pass a perag structure to the xfs_ag_resv_init_error trace point Darrick J. Wong
2024-12-23 21:39 ` [PATCH 11/36] xfs: pass objects to the xfs_irec_merge_{pre,post} trace points Darrick J. Wong
2024-12-23 21:40 ` [PATCH 12/36] xfs: convert remaining trace points to pass pag structures Darrick J. Wong
2024-12-23 21:40 ` [PATCH 13/36] xfs: split xfs_initialize_perag Darrick J. Wong
2024-12-23 21:40 ` [PATCH 14/36] xfs: insert the pag structures into the xarray later Darrick J. Wong
2024-12-23 21:41 ` [PATCH 15/36] xfs: factor out a generic xfs_group structure Darrick J. Wong
2024-12-23 21:41 ` [PATCH 16/36] xfs: add a xfs_group_next_range helper Darrick J. Wong
2024-12-23 21:41 ` [PATCH 17/36] xfs: switch perag iteration from the for_each macros to a while based iterator Darrick J. Wong
2024-12-23 21:41 ` [PATCH 18/36] xfs: move metadata health tracking to the generic group structure Darrick J. Wong
2024-12-23 21:42 ` [PATCH 19/36] xfs: move draining of deferred operations " Darrick J. Wong
2024-12-23 21:42 ` [PATCH 20/36] xfs: move the online repair rmap hooks " Darrick J. Wong
2024-12-23 21:42 ` [PATCH 21/36] xfs: convert busy extent tracking " Darrick J. Wong
2024-12-23 21:42 ` [PATCH 22/36] xfs: add a generic group pointer to the btree cursor Darrick J. Wong
2024-12-23 21:43 ` [PATCH 23/36] xfs: add group based bno conversion helpers Darrick J. Wong
2024-12-23 21:43 ` [PATCH 24/36] xfs: store a generic group structure in the intents Darrick J. Wong
2024-12-23 21:43 ` [PATCH 25/36] xfs: constify the xfs_sb predicates Darrick J. Wong
2024-12-23 21:43 ` [PATCH 26/36] xfs: rename metadata inode predicates Darrick J. Wong
2024-12-23 21:44 ` [PATCH 27/36] xfs: define the on-disk format for the metadir feature Darrick J. Wong
2024-12-23 21:44 ` [PATCH 28/36] xfs: iget for metadata inodes Darrick J. Wong
2024-12-23 21:44 ` [PATCH 29/36] xfs: enforce metadata inode flag Darrick J. Wong
2024-12-23 21:44 ` [PATCH 30/36] xfs: read and write metadata inode directory tree Darrick J. Wong
2024-12-23 21:45 ` [PATCH 31/36] xfs: disable the agi rotor for metadata inodes Darrick J. Wong
2024-12-23 21:45 ` [PATCH 32/36] xfs: advertise metadata directory feature Darrick J. Wong
2024-12-23 21:45 ` [PATCH 33/36] xfs: allow bulkstat to return metadata directories Darrick J. Wong
2024-12-23 21:45 ` [PATCH 34/36] xfs: adjust xfs_bmap_add_attrfork for metadir Darrick J. Wong
2024-12-23 21:46 ` [PATCH 35/36] xfs: record health problems with the metadata directory Darrick J. Wong
2024-12-23 21:46 ` [PATCH 36/36] xfs: check metadata directory file path connectivity Darrick J. Wong
2024-12-23 21:35 ` [PATCHSET v6.2 3/8] xfsprogs: metadata inode directory trees Darrick J. Wong
2024-12-23 21:46 ` [PATCH 01/41] libxfs: constify the xfs_inode predicates Darrick J. Wong
2024-12-23 21:47 ` [PATCH 02/41] libxfs: load metadata directory root at mount time Darrick J. Wong
2024-12-23 21:47 ` [PATCH 03/41] libxfs: enforce metadata inode flag Darrick J. Wong
2024-12-23 21:47 ` [PATCH 04/41] man2: document metadata directory flag in fsgeom ioctl Darrick J. Wong
2024-12-23 21:47 ` [PATCH 05/41] man: update scrub ioctl documentation for metadir Darrick J. Wong
2024-12-23 21:48 ` [PATCH 06/41] libfrog: report metadata directories in the geometry report Darrick J. Wong
2024-12-23 21:48 ` [PATCH 07/41] libfrog: allow METADIR in xfrog_bulkstat_single5 Darrick J. Wong
2024-12-23 21:48 ` [PATCH 08/41] xfs_io: support scrubbing metadata directory paths Darrick J. Wong
2024-12-23 21:48 ` [PATCH 09/41] xfs_db: disable xfs_check when metadir is enabled Darrick J. Wong
2024-12-23 21:49 ` [PATCH 10/41] xfs_db: report metadir support for version command Darrick J. Wong
2024-12-23 21:49 ` [PATCH 11/41] xfs_db: don't obfuscate metadata directories and attributes Darrick J. Wong
2024-12-23 21:49 ` [PATCH 12/41] xfs_db: support metadata directories in the path command Darrick J. Wong
2024-12-23 21:49 ` [PATCH 13/41] xfs_db: show the metadata root directory when dumping superblocks Darrick J. Wong
2024-12-23 21:50 ` [PATCH 14/41] xfs_db: display di_metatype Darrick J. Wong
2024-12-23 21:50 ` [PATCH 15/41] xfs_db: drop the metadata checking code from blockget Darrick J. Wong
2024-12-23 21:50 ` [PATCH 16/41] xfs_io: support flag for limited bulkstat of the metadata directory Darrick J. Wong
2024-12-23 21:50 ` [PATCH 17/41] xfs_io: support scrubbing metadata directory paths Darrick J. Wong
2024-12-23 21:51 ` [PATCH 18/41] xfs_spaceman: report health of metadir inodes too Darrick J. Wong
2024-12-23 21:51 ` [PATCH 19/41] xfs_scrub: tread zero-length read verify as an IO error Darrick J. Wong
2024-12-23 21:51 ` [PATCH 20/41] xfs_scrub: scan metadata directories during phase 3 Darrick J. Wong
2024-12-23 21:51 ` [PATCH 21/41] xfs_scrub: re-run metafile scrubbers during phase 5 Darrick J. Wong
2024-12-23 21:52 ` [PATCH 22/41] xfs_repair: handle sb_metadirino correctly when zeroing supers Darrick J. Wong
2024-12-23 21:52 ` [PATCH 23/41] xfs_repair: dont check metadata directory dirent inumbers Darrick J. Wong
2024-12-23 21:52 ` [PATCH 24/41] xfs_repair: refactor fixing dotdot Darrick J. Wong
2024-12-23 21:53 ` [PATCH 25/41] xfs_repair: refactor marking of metadata inodes Darrick J. Wong
2024-12-23 21:53 ` [PATCH 26/41] xfs_repair: refactor root directory initialization Darrick J. Wong
2024-12-23 21:53 ` [PATCH 27/41] xfs_repair: refactor grabbing realtime metadata inodes Darrick J. Wong
2024-12-23 21:53 ` [PATCH 28/41] xfs_repair: check metadata inode flag Darrick J. Wong
2024-12-23 21:54 ` [PATCH 29/41] xfs_repair: use libxfs_metafile_iget for quota/rt inodes Darrick J. Wong
2024-12-23 21:54 ` [PATCH 30/41] xfs_repair: rebuild the metadata directory Darrick J. Wong
2024-12-23 21:54 ` [PATCH 31/41] xfs_repair: don't let metadata and regular files mix Darrick J. Wong
2024-12-23 21:54 ` [PATCH 32/41] xfs_repair: update incore metadata state whenever we create new files Darrick J. Wong
2024-12-23 21:55 ` [PATCH 33/41] xfs_repair: pass private data pointer to scan_lbtree Darrick J. Wong
2024-12-23 21:55 ` [PATCH 34/41] xfs_repair: mark space used by metadata files Darrick J. Wong
2024-12-23 21:55 ` [PATCH 35/41] xfs_repair: adjust keep_fsinos to handle metadata directories Darrick J. Wong
2024-12-23 21:55 ` [PATCH 36/41] xfs_repair: metadata dirs are never plausible root dirs Darrick J. Wong
2024-12-23 21:56 ` [PATCH 37/41] xfs_repair: drop all the metadata directory files during pass 4 Darrick J. Wong
2024-12-23 21:56 ` [PATCH 38/41] xfs_repair: truncate and unmark orphaned metadata inodes Darrick J. Wong
2024-12-23 21:56 ` [PATCH 39/41] xfs_repair: do not count metadata directory files when doing quotacheck Darrick J. Wong
2024-12-23 21:56 ` [PATCH 40/41] xfs_repair: refactor generate_rtinfo Darrick J. Wong
2024-12-23 21:57 ` [PATCH 41/41] mkfs.xfs: enable metadata directories Darrick J. Wong
2024-12-23 21:35 ` [PATCHSET v6.2 4/8] mkfs: make protofiles less janky Darrick J. Wong
2024-12-23 21:57 ` [PATCH 1/4] libxfs: resync libxfs_alloc_file_space interface with the kernel Darrick J. Wong
2024-12-23 21:57 ` [PATCH 2/4] mkfs: support copying in large or sparse files Darrick J. Wong
2024-12-23 21:57 ` [PATCH 3/4] mkfs: support copying in xattrs Darrick J. Wong
2024-12-23 21:58 ` [PATCH 4/4] mkfs: add a utility to generate protofiles Darrick J. Wong
2024-12-23 21:35 ` [PATCHSET 5/8] xfsprogs: new code for 6.13 Darrick J. Wong
2024-12-23 21:58 ` [PATCH 01/52] xfs: create incore realtime group structures Darrick J. Wong
2024-12-23 21:58 ` [PATCH 02/52] xfs: define locking primitives for realtime groups Darrick J. Wong
2024-12-23 21:59 ` [PATCH 03/52] xfs: add a lockdep class key for rtgroup inodes Darrick J. Wong
2024-12-23 21:59 ` [PATCH 04/52] xfs: support caching rtgroup metadata inodes Darrick J. Wong
2024-12-23 21:59 ` [PATCH 05/52] xfs: add a xfs_bmap_free_rtblocks helper Darrick J. Wong
2024-12-23 21:59 ` [PATCH 06/52] xfs: move RT bitmap and summary information to the rtgroup Darrick J. Wong
2024-12-23 22:00 ` [PATCH 07/52] xfs: support creating per-RTG files in growfs Darrick J. Wong
2024-12-23 22:00 ` [PATCH 08/52] xfs: refactor xfs_rtbitmap_blockcount Darrick J. Wong
2024-12-23 22:00 ` [PATCH 09/52] xfs: refactor xfs_rtsummary_blockcount Darrick J. Wong
2024-12-23 22:00 ` [PATCH 10/52] xfs: make RT extent numbers relative to the rtgroup Darrick J. Wong
2024-12-23 22:01 ` [PATCH 11/52] libfrog: add memchr_inv Darrick J. Wong
2024-12-23 22:01 ` [PATCH 12/52] xfs: define the format of rt groups Darrick J. Wong
2024-12-23 22:01 ` [PATCH 13/52] xfs: update realtime super every time we update the primary fs super Darrick J. Wong
2024-12-23 22:01 ` [PATCH 14/52] xfs: export realtime group geometry via XFS_FSOP_GEOM Darrick J. Wong
2024-12-23 22:02 ` [PATCH 15/52] xfs: check that rtblock extents do not break rtsupers or rtgroups Darrick J. Wong
2024-12-23 22:02 ` [PATCH 16/52] xfs: add a helper to prevent bmap merges across rtgroup boundaries Darrick J. Wong
2024-12-23 22:02 ` [PATCH 17/52] xfs: add frextents to the lazysbcounters when rtgroups enabled Darrick J. Wong
2024-12-23 22:02 ` [PATCH 18/52] xfs: record rt group metadata errors in the health system Darrick J. Wong
2024-12-23 22:03 ` [PATCH 19/52] xfs: export the geometry of realtime groups to userspace Darrick J. Wong
2024-12-23 22:03 ` [PATCH 20/52] xfs: add block headers to realtime bitmap and summary blocks Darrick J. Wong
2024-12-23 22:03 ` [PATCH 21/52] xfs: encode the rtbitmap in big endian format Darrick J. Wong
2024-12-23 22:03 ` [PATCH 22/52] xfs: encode the rtsummary " Darrick J. Wong
2024-12-23 22:04 ` [PATCH 23/52] xfs: grow the realtime section when realtime groups are enabled Darrick J. Wong
2024-12-23 22:04 ` [PATCH 24/52] xfs: support logging EFIs for realtime extents Darrick J. Wong
2024-12-23 22:04 ` [PATCH 25/52] xfs: support error injection when freeing rt extents Darrick J. Wong
2024-12-23 22:05 ` [PATCH 26/52] xfs: use realtime EFI to free extents when rtgroups are enabled Darrick J. Wong
2024-12-23 22:05 ` [PATCH 27/52] xfs: don't merge ioends across RTGs Darrick J. Wong
2024-12-23 22:05 ` [PATCH 28/52] xfs: make the RT allocator rtgroup aware Darrick J. Wong
2024-12-23 22:05 ` [PATCH 29/52] xfs: scrub the realtime group superblock Darrick J. Wong
2024-12-23 22:06 ` [PATCH 30/52] xfs: scrub metadir paths for rtgroup metadata Darrick J. Wong
2024-12-23 22:06 ` [PATCH 31/52] xfs: mask off the rtbitmap and summary inodes when metadir in use Darrick J. Wong
2024-12-23 22:06 ` [PATCH 32/52] xfs: create helpers to deal with rounding xfs_fileoff_t to rtx boundaries Darrick J. Wong
2024-12-23 22:06 ` [PATCH 33/52] xfs: create helpers to deal with rounding xfs_filblks_t " Darrick J. Wong
2024-12-23 22:07 ` [PATCH 34/52] xfs: make xfs_rtblock_t a segmented address like xfs_fsblock_t Darrick J. Wong
2024-12-23 22:07 ` [PATCH 35/52] xfs: adjust min_block usage in xfs_verify_agbno Darrick J. Wong
2024-12-23 22:07 ` [PATCH 36/52] xfs: move the min and max group block numbers to xfs_group Darrick J. Wong
2024-12-23 22:07 ` [PATCH 37/52] xfs: implement busy extent tracking for rtgroups Darrick J. Wong
2024-12-23 22:08 ` [PATCH 38/52] xfs: use metadir for quota inodes Darrick J. Wong
2024-12-23 22:08 ` [PATCH 39/52] xfs: scrub quota file metapaths Darrick J. Wong
2024-12-23 22:08 ` [PATCH 40/52] xfs: enable metadata directory feature Darrick J. Wong
2024-12-23 22:08 ` [PATCH 41/52] xfs: convert struct typedefs in xfs_ondisk.h Darrick J. Wong
2024-12-23 22:09 ` [PATCH 42/52] xfs: separate space btree structures " Darrick J. Wong
2024-12-23 22:09 ` [PATCH 43/52] xfs: port ondisk structure checks from xfs/122 to the kernel Darrick J. Wong
2024-12-23 22:09 ` [PATCH 44/52] xfs: remove unknown compat feature check in superblock write validation Darrick J. Wong
2024-12-23 22:09 ` [PATCH 45/52] xfs: fix sparse inode limits on runt AG Darrick J. Wong
2024-12-23 22:10 ` [PATCH 46/52] xfs: switch to multigrain timestamps Darrick J. Wong
2024-12-23 22:10 ` [PATCH 47/52] xfs: don't call xfs_bmap_same_rtgroup in xfs_bmap_add_extent_hole_delay Darrick J. Wong
2024-12-23 22:10 ` [PATCH 48/52] xfs: return a 64-bit block count from xfs_btree_count_blocks Darrick J. Wong
2024-12-23 22:10 ` [PATCH 49/52] xfs: fix error bailout in xfs_rtginode_create Darrick J. Wong
2024-12-23 22:11 ` [PATCH 50/52] xfs: update btree keys correctly when _insrec splits an inode root block Darrick J. Wong
2024-12-23 22:11 ` [PATCH 51/52] xfs: fix sb_spino_align checks for large fsblock sizes Darrick J. Wong
2024-12-23 22:11 ` [PATCH 52/52] xfs: return from xfs_symlink_verify early on V4 filesystems Darrick J. Wong
2024-12-23 21:35 ` [PATCHSET v6.2 6/8] xfsprogs: shard the realtime section Darrick J. Wong
2024-12-23 22:12 ` [PATCH 01/51] libxfs: remove XFS_ILOCK_RT* Darrick J. Wong
2024-12-23 22:12 ` [PATCH 02/51] libxfs: adjust xfs_fsb_to_db to handle segmented rtblocks Darrick J. Wong
2024-12-23 22:12 ` [PATCH 03/51] xfs_repair,mkfs: port to libxfs_rt{bitmap,summary}_create Darrick J. Wong
2024-12-23 22:12 ` [PATCH 04/51] libxfs: use correct rtx count to block count conversion Darrick J. Wong
2024-12-23 22:13 ` [PATCH 05/51] libfrog: scrub the realtime group superblock Darrick J. Wong
2024-12-23 22:13 ` [PATCH 06/51] man: document the rt group geometry ioctl Darrick J. Wong
2024-12-23 22:13 ` [PATCH 07/51] man: document rgextents geom field Darrick J. Wong
2024-12-23 22:13 ` [PATCH 08/51] libxfs: port userspace deferred log item to handle rtgroups Darrick J. Wong
2024-12-23 22:14 ` [PATCH 09/51] libxfs: implement some sanity checking for enormous rgcount Darrick J. Wong
2024-12-23 22:14 ` [PATCH 10/51] libfrog: support scrubbing rtgroup metadata paths Darrick J. Wong
2024-12-23 22:14 ` [PATCH 11/51] libfrog: report rt groups in output Darrick J. Wong
2024-12-23 22:14 ` [PATCH 12/51] libfrog: add bitmap_clear Darrick J. Wong
2024-12-23 22:15 ` [PATCH 13/51] xfs_logprint: report realtime EFIs Darrick J. Wong
2024-12-23 22:15 ` [PATCH 14/51] xfs_repair: adjust rtbitmap/rtsummary word updates to handle big endian values Darrick J. Wong
2024-12-23 22:15 ` [PATCH 15/51] xfs_repair: refactor phase4 Darrick J. Wong
2024-12-23 22:15 ` [PATCH 16/51] xfs_repair: refactor offsetof+sizeof to offsetofend Darrick J. Wong
2024-12-23 22:16 ` [PATCH 17/51] xfs_repair: improve rtbitmap discrepancy reporting Darrick J. Wong
2024-12-23 22:16 ` [PATCH 18/51] xfs_repair: simplify rt_lock handling Darrick J. Wong
2024-12-23 22:16 ` [PATCH 19/51] xfs_repair: add a real per-AG bitmap abstraction Darrick J. Wong
2024-12-23 22:16 ` [PATCH 20/51] xfs_repair: support realtime groups Darrick J. Wong
2024-12-23 22:17 ` [PATCH 21/51] xfs_repair: find and clobber rtgroup bitmap and summary files Darrick J. Wong
2024-12-23 22:17 ` [PATCH 22/51] xfs_repair: support realtime superblocks Darrick J. Wong
2024-12-23 22:17 ` [PATCH 23/51] xfs_repair: repair rtbitmap and rtsummary block headers Darrick J. Wong
2024-12-23 22:18 ` [PATCH 24/51] xfs_db: enable the rtblock and rtextent commands for segmented rt block numbers Darrick J. Wong
2024-12-23 22:18 ` [PATCH 25/51] xfs_db: enable rtconvert to handle segmented rtblocks Darrick J. Wong
2024-12-23 22:18 ` [PATCH 26/51] xfs_db: listify the definition of enum typnm Darrick J. Wong
2024-12-23 22:18 ` [PATCH 27/51] xfs_db: support dumping realtime group data and superblocks Darrick J. Wong
2024-12-23 22:19 ` [PATCH 28/51] xfs_db: support changing the label and uuid of rt superblocks Darrick J. Wong
2024-12-23 22:19 ` [PATCH 29/51] xfs_db: enable conversion of rt space units Darrick J. Wong
2024-12-23 22:19 ` [PATCH 30/51] xfs_db: metadump metadir rt bitmap and summary files Darrick J. Wong
2024-12-23 22:19 ` [PATCH 31/51] xfs_db: metadump realtime devices Darrick J. Wong
2024-12-23 22:20 ` [PATCH 32/51] xfs_db: dump rt bitmap blocks Darrick J. Wong
2024-12-23 22:20 ` [PATCH 33/51] xfs_db: dump rt summary blocks Darrick J. Wong
2024-12-23 22:20 ` [PATCH 34/51] xfs_db: report rt group and block number in the bmap command Darrick J. Wong
2024-12-23 22:20 ` [PATCH 35/51] xfs_io: support scrubbing rtgroup metadata Darrick J. Wong
2024-12-23 22:21 ` [PATCH 36/51] xfs_io: support scrubbing rtgroup metadata paths Darrick J. Wong
2024-12-23 22:21 ` [PATCH 37/51] xfs_io: add a command to display allocation group information Darrick J. Wong
2024-12-23 22:21 ` [PATCH 38/51] xfs_io: add a command to display realtime " Darrick J. Wong
2024-12-23 22:21 ` [PATCH 39/51] xfs_io: display rt group in verbose bmap output Darrick J. Wong
2024-12-23 22:22 ` [PATCH 40/51] xfs_io: display rt group in verbose fsmap output Darrick J. Wong
2024-12-23 22:22 ` [PATCH 41/51] xfs_mdrestore: refactor open-coded fd/is_file into a structure Darrick J. Wong
2024-12-23 22:22 ` [PATCH 42/51] xfs_mdrestore: restore rt group superblocks to realtime device Darrick J. Wong
2024-12-23 22:22 ` [PATCH 43/51] xfs_spaceman: report on realtime group health Darrick J. Wong
2024-12-23 22:23 ` [PATCH 44/51] xfs_scrub: scrub realtime allocation group metadata Darrick J. Wong
2024-12-23 22:23 ` [PATCH 45/51] xfs_scrub: check rtgroup metadata directory connections Darrick J. Wong
2024-12-23 22:23 ` [PATCH 46/51] xfs_scrub: cleanup fsmap keys initialization Darrick J. Wong
2024-12-23 22:24 ` [PATCH 47/51] xfs_scrub: call GETFSMAP for each rt group in parallel Darrick J. Wong
2024-12-23 22:24 ` [PATCH 48/51] xfs_scrub: trim realtime volumes too Darrick J. Wong
2024-12-23 22:24 ` [PATCH 49/51] xfs_scrub: use histograms to speed up phase 8 on the realtime volume Darrick J. Wong
2024-12-23 22:24 ` [PATCH 50/51] mkfs: add headers to realtime bitmap blocks Darrick J. Wong
2024-12-23 22:25 ` [PATCH 51/51] mkfs: format realtime groups Darrick J. Wong
2024-12-23 21:36 ` [PATCHSET v6.2 7/8] xfsprogs: store quota files in the metadir Darrick J. Wong
2024-12-23 22:25 ` [PATCH 1/7] libfrog: scrub quota file metapaths Darrick J. Wong
2024-12-23 22:25 ` [PATCH 2/7] xfs_db: support metadir quotas Darrick J. Wong
2024-12-23 22:25 ` [PATCH 3/7] xfs_repair: refactor quota inumber handling Darrick J. Wong
2024-12-23 22:26 ` [PATCH 4/7] xfs_repair: hoist the secondary sb qflags handling Darrick J. Wong
2024-12-23 22:26 ` [PATCH 5/7] xfs_repair: support quota inodes in the metadata directory Darrick J. Wong
2024-12-23 22:26 ` [PATCH 6/7] xfs_repair: try not to trash qflags on metadir filesystems Darrick J. Wong
2024-12-23 22:26 ` [PATCH 7/7] mkfs: add quota flags when setting up filesystem Darrick J. Wong
2024-12-23 21:36 ` [PATCHSET v6.2 8/8] xfsprogs: enable quota for realtime volumes Darrick J. Wong
2024-12-23 22:27 ` [PATCH 1/2] xfs_quota: report warning limits for realtime space quotas Darrick J. Wong
2024-12-23 22:27 ` [PATCH 2/2] mkfs: enable rt quota options Darrick J. Wong
2024-12-23 22:27 ` [GIT PULL 1/8] xfsprogs: bug fixes for 6.12 Darrick J. Wong
2024-12-23 22:27 ` [GIT PULL 2/8] libxfs: metadata inode directory trees Darrick J. Wong
2024-12-23 22:28 ` [GIT PULL 3/8] xfsprogs: " Darrick J. Wong
2024-12-23 22:28 ` [GIT PULL 4/8] mkfs: make protofiles less janky Darrick J. Wong
2024-12-23 22:28 ` [GIT PULL 5/8] xfsprogs: new code for 6.13 Darrick J. Wong
2024-12-23 22:28 ` [GIT PULL 6/8] xfsprogs: shard the realtime section Darrick J. Wong
2024-12-23 22:29 ` [GIT PULL 7/8] xfsprogs: store quota files in the metadir Darrick J. Wong
2024-12-23 22:29 ` [GIT PULL 8/8] xfsprogs: enable quota for realtime volumes 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=20241223212904.GQ6174@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=aalbersh@redhat.com \
--cc=hch@infradead.org \
--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