Linux XFS filesystem development
 help / color / mirror / Atom feed
 messages from 2023-12-31 22:40:37 to 2023-12-31 23:32:27 UTC [more...]

[PATCHSET v2.0 02/17] xfsprogs: metadata inode directories
 2023-12-31 23:32 UTC  (12+ messages)
` [PATCH 01/58] xfs: don't use the incore struct xfs_sb for offsets into struct xfs_dsb
` [PATCH 02/58] xfs: create imeta abstractions to get and set metadata inodes
` [PATCH 03/58] xfs: create transaction reservations for metadata inode operations
` [PATCH 04/58] mkfs: clean up the rtinit() function
` [PATCH 05/58] libxfs: convert all users to libxfs_imeta_create
` [PATCH 06/58] mkfs: break up the rest of the rtinit() function
` [PATCH 07/58] xfs: iget for metadata inodes
` [PATCH 08/58] xfs: define the on-disk format for the metadir feature
` [PATCH 09/58] xfs: update imeta transaction reservations for metadir
` [PATCH 10/58] xfs: load metadata directory root at mount time
` [PATCH 11/58] xfs: convert metadata inode lookup keys to use paths

[PATCHSET v2.0 01/17] xfsprogs: hoist inode operations to libxfs
 2023-12-31 23:29 UTC  (29+ messages)
` [PATCH 01/28] xfs: hoist extent size helpers "
` [PATCH 02/28] xfs: hoist inode flag conversion functions "
` [PATCH 03/28] xfs: hoist project id get/set "
` [PATCH 04/28] libxfs: put all the inode functions in a single file
` [PATCH 05/28] libxfs: pass IGET flags through to xfs_iread
` [PATCH 06/28] xfs: pack icreate initialization parameters into a separate structure
` [PATCH 07/28] xfs: implement atime updates in xfs_trans_ichgtime
` [PATCH 08/28] libxfs: rearrange libxfs_trans_ichgtime call when creating inodes
` [PATCH 09/28] libxfs: set access time when creating files
` [PATCH 10/28] libxfs: when creating a file in a directory, set the project id based on the parent
` [PATCH 11/28] libxfs: pass flags2 from parent to child when creating files
` [PATCH 12/28] xfs: split new inode creation into two pieces
` [PATCH 13/28] libxfs: backport inode init code from the kernel
` [PATCH 14/28] libxfs: remove libxfs_dir_ialloc
` [PATCH 15/28] libxfs: implement get_random_u32
` [PATCH 16/28] xfs: hoist new inode initialization functions to libxfs
` [PATCH 17/28] xfs: hoist xfs_iunlink "
` [PATCH 18/28] xfs: hoist xfs_{bump,drop}link "
` [PATCH 19/28] xfs: create libxfs helper to link a new inode into a directory
` [PATCH 20/28] xfs: create libxfs helper to link an existing "
` [PATCH 21/28] xfs: hoist inode free function to libxfs
` [PATCH 22/28] xfs: create libxfs helper to remove an existing inode/name from a directory
` [PATCH 23/28] xfs: create libxfs helper to exchange two directory entries
` [PATCH 24/28] xfs: create libxfs helper to rename "
` [PATCH 25/28] xfs: move dirent update hooks to xfs_dir2.c
` [PATCH 26/28] xfs_db: port the iunlink command to use the libxfs iunlink function
` [PATCH 27/28] xfs_repair: use library functions to reset root/rbm/rsum inodes
` [PATCH 28/28] xfs_repair: use library functions for orphanage creation

[PATCHSET 6/6] xfs_scrub: vectorize kernel calls
 2023-12-31 23:22 UTC  (11+ messages)
` [PATCH 01/10] xfs: introduce vectored scrub mode
` [PATCH 02/10] libfrog: support vectored scrub
` [PATCH 03/10] xfs_io: "
` [PATCH 04/10] xfs_scrub: split the scrub epilogue code into a separate function
` [PATCH 05/10] xfs_scrub: split the repair "
` [PATCH 06/10] xfs_scrub: convert scrub and repair epilogues to use xfs_scrub_vec
` [PATCH 07/10] xfs_scrub: vectorize scrub calls
` [PATCH 08/10] xfs_scrub: vectorize repair calls
` [PATCH 09/10] xfs_scrub: use scrub barriers to reduce kernel calls
` [PATCH 10/10] xfs_scrub: try spot repairs of metadata items to make scrub progress

[PATCHSET v13.0 5/6] xfs: detect and correct directory tree problems
 2023-12-31 23:19 UTC  (7+ messages)
` [PATCH 1/6] xfs_db: add link and unlink expert commands
` [PATCH 2/6] xfs: teach online scrub to find directory tree structure problems
` [PATCH 3/6] xfs: report directory tree corruption in the health information
` [PATCH 4/6] xfs_scrub: fix erroring out of check_inode_names
` [PATCH 5/6] xfs_scrub: detect and repair directory tree corruptions
` [PATCH 6/6] xfs_scrub: defer phase5 file scans if dirloop fails

[PATCHSET v13.0 4/6] xfsprogs: fsck for parent pointers
 2023-12-31 23:18 UTC  (19+ messages)
` [PATCH 01/18] xfs: create a blob array data structure
` [PATCH 02/18] xfs: check dirents have parent pointers
` [PATCH 03/18] man2: update ioctl_xfs_scrub_metadata.2 for "
` [PATCH 04/18] xfs: add raw parent pointer apis to support repair
` [PATCH 05/18] xfs: set child file owner in xfs_da_args when changing parent pointers
` [PATCH 06/18] xfs: remove pointless unlocked assertion
` [PATCH 07/18] xfs: split xfs_bmap_add_attrfork into two pieces
` [PATCH 08/18] xfs: actually rebuild the parent pointer xattrs
` [PATCH 09/18] xfs_repair: add parent pointers when messing with /lost+found
` [PATCH 10/18] xfs_repair: build a parent pointer index
` [PATCH 11/18] xfs_repair: move the global dirent name store to a separate object
` [PATCH 12/18] xfs_repair: deduplicate strings stored in string blob
` [PATCH 13/18] xfs_repair: check parent pointers
` [PATCH 14/18] xfs_repair: dump garbage parent pointer attributes
` [PATCH 15/18] xfs_repair: update ondisk parent pointer records
` [PATCH 16/18] xfs_repair: wipe ondisk parent pointers when there are none
` [PATCH 17/18] xfs_repair: upgrade an existing filesystem to have parent pointers
` [PATCH 18/18] xfs_scrub: use parent pointers to report lost file data

[PATCHSET v13.0 3/6] xfsprogs: Parent Pointers
 2023-12-31 23:13 UTC  (33+ messages)
` [PATCH 01/32] xfs: add parent pointer support to attribute code
` [PATCH 02/32] xfs: define parent pointer ondisk extended attribute format
` [PATCH 03/32] xfs: add parent pointer validator functions
` [PATCH 04/32] xfs: extend transaction reservations for parent attributes
` [PATCH 05/32] xfs: parent pointer attribute creation
` [PATCH 06/32] xfs: add parent attributes to link
` [PATCH 07/32] xfs: add parent attributes to symlink
` [PATCH 08/32] xfs: remove parent pointers in unlink
` [PATCH 09/32] xfs: Add parent pointers to rename
` [PATCH 10/32] xfs: pass the attr value to put_listent when possible
` [PATCH 11/32] xfs: Add parent pointer ioctl
` [PATCH 12/32] xfs: fix unit conversion error in xfs_log_calc_max_attrsetm_res
` [PATCH 13/32] xfs: drop compatibility minimum log size computations for reflink
` [PATCH 14/32] xfs: don't remove the attr fork when parent pointers are enabled
` [PATCH 15/32] xfs: Add the parent pointer support to the superblock version 5
` [PATCH 16/32] libfrog: add parent pointer support code
` [PATCH 17/32] libfrog: detect looping paths when walking directory parent pointers
` [PATCH 18/32] xfs_io: adapt parent command to new parent pointer ioctls
` [PATCH 19/32] xfs_io: Add i, n and f flags to parent command
` [PATCH 20/32] xfs_logprint: decode parent pointers in ATTRI items fully
` [PATCH 21/32] xfs_spaceman: report file paths
` [PATCH 22/32] xfs_scrub: use parent pointers when possible to report file operations
` [PATCH 23/32] xfs_db: report parent pointers in version command
` [PATCH 24/32] xfs_db: report parent bit on xattrs
` [PATCH 25/32] xfs_db: report parent pointers embedded in xattrs
` [PATCH 26/32] xfs_db: obfuscate dirent and parent pointer names consistently
` [PATCH 27/32] libxfs: export attr3_leaf_hdr_from_disk via libxfs_api_defs.h
` [PATCH 28/32] xfs_db: add a parents command to list the parents of a file
` [PATCH 29/32] libxfs: create new files with attr forks if necessary
` [PATCH 30/32] xfsprogs: Fix default superblock attr bits
` [PATCH 31/32] mkfs: Add parent pointers during protofile creation
` [PATCH 32/32] mkfs: enable formatting with parent pointers

[PATCHSET v13.0 2/6] xfsprogs: name-value xattr lookups
 2023-12-31 23:05 UTC  (12+ messages)
` [PATCH 01/11] xfs: allow newer INCOMPAT/RO_COMPAT feature bits to protect ATTRI log items
` [PATCH 02/11] xfs: make xfs_attr_set require XFS_DA_OP_REMOVE
` [PATCH 03/11] xfs: allow xattr matching on name and value for local/sf attrs
` [PATCH 04/11] xfs: preserve NVLOOKUP in xfs_attr_set
` [PATCH 05/11] xfs: restructure xfs_attr_complete_op a bit
` [PATCH 06/11] xfs: use helpers to extract xattr op from opflags
` [PATCH 07/11] xfs: log NVLOOKUP xattr removal operations
` [PATCH 08/11] xfs: log NVLOOKUP xattr setting operations
` [PATCH 09/11] xfs: log NVLOOKUP xattr nvreplace operations
` [PATCH 10/11] xfs_logprint: dump new attr log item fields
` [PATCH 11/11] xfs_logprint: print missing attri header fields

[PATCHSET v13.0 1/6] xfsprogs: retain ILOCK during directory updates
 2023-12-31 23:02 UTC  (2+ messages)
` [PATCH 1/1] xfs: Increase XFS_DEFER_OPS_NR_INODES to 5

[PATCHSET 40/40] xfs_repair: add other v5 features to filesystems
 2023-12-31 23:01 UTC  (5+ messages)
` [PATCH 1/4] xfs_repair: check free space requirements before allowing upgrades
` [PATCH 2/4] xfs_repair: allow sysadmins to add free inode btree indexes
` [PATCH 3/4] xfs_repair: allow sysadmins to add reflink
` [PATCH 4/4] xfs_repair: allow sysadmins to add reverse mapping indexes

[PATCHSET v29.0 39/40] xfs_scrub: automatic optimization by default
 2023-12-31 23:00 UTC  (4+ messages)
` [PATCH 1/3] xfs_scrub: automatic downgrades to dry-run mode in service mode
` [PATCH 2/3] xfs_scrub: add an optimization-only mode
` [PATCH 3/3] debian: enable xfs_scrub systemd services by default

[PATCHSET v29.0 38/40] xfs_scrub_all: improve systemd handling
 2023-12-31 23:00 UTC  (6+ messages)
` [PATCH 1/5] xfs_scrub_all: encapsulate all the subprocess code in an object
` [PATCH 2/5] xfs_scrub_all: encapsulate all the systemctl "
` [PATCH 3/5] xfs_scrub_all: add CLI option for easier debugging
` [PATCH 4/5] xfs_scrub_all: convert systemctl calls to dbus
` [PATCH 5/5] xfs_scrub_all: implement retry and backoff for dbus calls

[PATCHSET v29.0 37/40] xfs_scrub_all: automatic media scan service
 2023-12-31 22:58 UTC  (7+ messages)
` [PATCH 1/6] xfs_scrub_all: only use the xfs_scrub@ systemd services in service mode
` [PATCH 2/6] xfs_scrub_all: remove journalctl background process
` [PATCH 3/6] xfs_scrub_all: support metadata+media scans of all filesystems
` [PATCH 4/6] xfs_scrub_all: enable periodic file data scrubs automatically
` [PATCH 5/6] xfs_scrub_all: trigger automatic media scans once per month
` [PATCH 6/6] xfs_scrub_all: failure reporting for the xfs_scrub_all job

[PATCHSET v29.0 36/40] xfs_scrub: tighten security of systemd services
 2023-12-31 22:57 UTC  (7+ messages)
` [PATCH 1/6] xfs_scrub: allow auxiliary pathnames for sandboxing
` [PATCH 2/6] xfs_scrub.service: reduce CPU usage to 60% when possible
` [PATCH 3/6] xfs_scrub: use dynamic users when running as a systemd service
` [PATCH 4/6] xfs_scrub: tighten up the security on the background "
` [PATCH 5/6] xfs_scrub_fail: "
` [PATCH 6/6] xfs_scrub_all: "

[PATCHSET v29.0 35/40] xfs_scrub_all: fixes for systemd services
 2023-12-31 22:55 UTC  (5+ messages)
` [PATCH 1/4] xfs_scrub_all: fix argument passing when invoking xfs_scrub manually
` [PATCH 2/4] xfs_scrub_all: survive systemd restarts when waiting for services
` [PATCH 3/4] xfs_scrub_all: simplify cleanup of run_killable
` [PATCH 4/4] xfs_scrub_all: fix termination signal handling

[PATCHSET v29.0 34/40] xfs_scrub: fixes for systemd services
 2023-12-31 22:54 UTC  (10+ messages)
` [PATCH 1/9] debian: install scrub services with dh_installsystemd
` [PATCH 2/9] xfs_scrub_all: escape service names consistently
` [PATCH 3/9] xfs_scrub: fix pathname escaping across all service definitions
` [PATCH 4/9] xfs_scrub_fail: fix sendmail detection
` [PATCH 5/9] xfs_scrub_fail: return the failure status of the mailer program
` [PATCH 6/9] xfs_scrub_fail: add content type header to failure emails
` [PATCH 7/9] xfs_scrub_fail: advise recipients not to reply
` [PATCH 8/9] xfs_scrub_fail: move executable script to /usr/libexec
` [PATCH 9/9] xfs_scrub_all.cron: move to package data directory

[PATCHSET v29.0 33/40] xfs_scrub: use free space histograms to reduce fstrim runtime
 2023-12-31 22:52 UTC  (8+ messages)
` [PATCH 1/7] libfrog: hoist free space histogram code
` [PATCH 2/7] libfrog: print wider columns for free space histogram
` [PATCH 3/7] libfrog: print cdf of free space buckets
` [PATCH 4/7] xfs_scrub: don't close stdout when closing the progress bar
` [PATCH 5/7] xfs_scrub: remove pointless spacemap.c arguments
` [PATCH 6/7] xfs_scrub: collect free space histograms during phase 7
` [PATCH 7/7] xfs_scrub: tune fstrim minlen parameter based on free space histograms

[PATCHSET v29.0 32/40] xfs_scrub: move fstrim to a separate phase
 2023-12-31 22:50 UTC  (9+ messages)
` [PATCH 1/8] xfs_scrub: move FITRIM to phase 8
` [PATCH 2/8] xfs_scrub: ignore phase 8 if the user disabled fstrim
` [PATCH 3/8] xfs_scrub: collapse trim_filesystem
` [PATCH 4/8] xfs_scrub: fix the work estimation for phase 8
` [PATCH 5/8] xfs_scrub: report FITRIM errors properly
` [PATCH 6/8] xfs_scrub: don't call FITRIM after runtime errors
` [PATCH 7/8] xfs_scrub: don't trim the first agbno of each AG for better performance
` [PATCH 8/8] xfs_scrub: improve progress meter for phase 8 fstrimming

[PATCHSET v29.0 31/40] xfs_scrub: detect deceptive filename extensions
 2023-12-31 22:48 UTC  (14+ messages)
` [PATCH 01/13] xfs_scrub: use proper UChar string iterators
` [PATCH 02/13] xfs_scrub: hoist code that removes ignorable characters
` [PATCH 03/13] xfs_scrub: add a couple of omitted invisible code points
` [PATCH 04/13] xfs_scrub: avoid potential UAF after freeing a duplicate name entry
` [PATCH 05/13] xfs_scrub: guard against libicu returning negative buffer lengths
` [PATCH 06/13] xfs_scrub: hoist non-rendering character predicate
` [PATCH 07/13] xfs_scrub: store bad flags with the name entry
` [PATCH 08/13] xfs_scrub: rename UNICRASH_ZERO_WIDTH to UNICRASH_INVISIBLE
` [PATCH 09/13] xfs_scrub: type-coerce the UNICRASH_* flags
` [PATCH 10/13] xfs_scrub: reduce size of struct name_entry
` [PATCH 11/13] xfs_scrub: rename struct unicrash.normalizer
` [PATCH 12/13] xfs_scrub: report deceptive file extensions
` [PATCH 13/13] xfs_scrub: dump unicode points

[PATCHSET v29.0 30/40] xfs_scrub: improve scheduling of repair items
 2023-12-31 22:45 UTC  (5+ messages)
` [PATCH 1/4] libfrog: enhance ptvar to support initializer functions
` [PATCH 2/4] xfs_scrub: improve thread scheduling repair items during phase 4
` [PATCH 3/4] xfs_scrub: recheck entire metadata objects after corruption repairs
` [PATCH 4/4] xfs_scrub: try to repair space metadata before file metadata

[PATCHSET v29.0 29/40] xfs_scrub: use scrub_item to track check progress
 2023-12-31 22:44 UTC  (6+ messages)
` [PATCH 1/5] xfs_scrub: start tracking scrub state in scrub_item
` [PATCH 2/5] xfs_scrub: remove enum check_outcome
` [PATCH 3/5] xfs_scrub: refactor scrub_meta_type out of existence
` [PATCH 4/5] xfs_scrub: hoist repair retry loop to repair_item_class
` [PATCH 5/5] xfs_scrub: hoist scrub retry loop to scrub_item_check_file

[PATCHSET v29.0 28/40] xfs_scrub: track data dependencies for repairs
 2023-12-31 22:42 UTC  (10+ messages)
` [PATCH 1/9] xfs_scrub: track repair items by principal, not by individual repairs
` [PATCH 2/9] xfs_scrub: use repair_item to direct repair activities
` [PATCH 3/9] xfs_scrub: remove action lists from phaseX code
` [PATCH 4/9] xfs_scrub: remove scrub_metadata_file
` [PATCH 5/9] xfs_scrub: boost the repair priority of dependencies of damaged items
` [PATCH 6/9] xfs_scrub: clean up repair_item_difficulty a little
` [PATCH 7/9] xfs_scrub: check dependencies of a scrub type before repairing
` [PATCH 8/9] xfs_scrub: retry incomplete repairs
` [PATCH 9/9] xfs_scrub: remove unused action_list fields


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox