public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2018-03-27 01:44:48 to 2018-04-03 19:39:14 UTC [more...]

[PATCH v8 00/18] dax: fix dma vs truncate/hole-punch
 2018-04-03 19:39 UTC  (23+ messages)
` [PATCH v8 01/18] dax: store pfns in the radix
` [PATCH v8 02/18] fs, dax: prepare for dax-specific address_space_operations
` [PATCH v8 03/18] block, dax: remove dead code in blkdev_writepages()
` [PATCH v8 04/18] xfs, dax: introduce xfs_dax_aops
` [PATCH v8 05/18] ext4, dax: introduce ext4_dax_aops
` [PATCH v8 06/18] ext2, dax: introduce ext2_dax_aops
` [PATCH v8 07/18] fs, dax: use page->mapping to warn if truncate collides with a busy page
` [PATCH v8 08/18] dax: introduce CONFIG_DAX_DRIVER
` [PATCH v8 09/18] dax, dm: allow device-mapper to operate without dax support
` [PATCH v8 10/18] dax, dm: introduce ->fs_{claim, release}() dax_device infrastructure
` [PATCH v8 11/18] mm, dax: enable filesystems to trigger dev_pagemap ->page_free callbacks
` [PATCH v8 12/18] memremap: split devm_memremap_pages() and memremap() infrastructure
` [PATCH v8 13/18] mm, dev_pagemap: introduce CONFIG_DEV_PAGEMAP_OPS
` [PATCH v8 14/18] memremap: mark devm_memremap_pages() EXPORT_SYMBOL_GPL
` [PATCH v8 15/18] mm, fs, dax: handle layout changes to pinned dax mappings
` [PATCH v8 16/18] xfs: prepare xfs_break_layouts() to be called with XFS_MMAPLOCK_EXCL
` [PATCH v8 17/18] xfs: prepare xfs_break_layouts() for another layout type
` [PATCH v8 18/18] xfs, dax: introduce xfs_break_dax_layouts()

[PATCH 00/14] xfsprogs: online scrub fixes
 2018-04-03 17:49 UTC  (5+ messages)
` [PATCH 01/14] xfs_scrub: avoid buffer overflow when scanning attributes
` [PATCH 02/14] xfs_scrub: only run ascii name checks if unicode name checker

[ANNOUNCE] xfsprogs: for-next updated to a8502cc
 2018-04-03 17:05 UTC 

KASAN: use-after-free Read in xfs_inobt_init_key_from_rec
 2018-04-03 17:01 UTC 

FreeBSD and xfsprogs ?
 2018-04-03 16:12 UTC  (5+ messages)

[PATCH] xfs: fix intent use-after-free on abort
 2018-04-03 11:34 UTC  (5+ messages)

[GIT PULL] xfs: new features for 4.17
 2018-04-03  4:49 UTC 

WARNING: bad unlock balance in xfs_iunlock
 2018-04-03  4:38 UTC  (2+ messages)

[PATCH 0/2] xfs: online scrub fixes
 2018-04-03  3:01 UTC  (7+ messages)
` [PATCH 1/2] xfs: skip scrub xref if corruption already noted
  ` [PATCH v2 "
` [PATCH 2/2] xfs: hoist xfs_scrub_agfl_walk to libxfs as xfs_agfl_walk
  ` [PATCH v2 "

[PATCH] xfs: always free inline data before resetting inode fork during ifree
 2018-04-03  1:46 UTC  (28+ messages)

[PATCH V2 1/2] xfs: Remove "committed" argument of xfs_dir_ialloc
 2018-04-02 22:50 UTC  (2+ messages)

[PATCH v14.1 00/21] xfs: online repair support
 2018-04-02 19:58 UTC  (22+ messages)
` [PATCH 01/21] xfs: add helpers to calculate btree size
` [PATCH 02/21] xfs: expose various functions to repair code
` [PATCH 03/21] xfs: add repair helpers for the reverse mapping btree
` [PATCH 04/21] xfs: add repair helpers for the reference count btree
` [PATCH 05/21] xfs: add BMAPI_NORMAP flag to perform block remapping without updating rmapbt
` [PATCH 06/21] xfs: make xfs_bmapi_remapi work with attribute forks
` [PATCH 07/21] xfs: halt auto-reclamation activities while rebuilding rmap
` [PATCH 08/21] xfs: create tracepoints for online repair
` [PATCH 09/21] xfs: implement the metadata repair ioctl flag
` [PATCH 10/21] xfs: add helper routines for the repair code
` [PATCH 11/21] xfs: repair superblocks
` [PATCH 12/21] xfs: repair the AGF and AGFL
` [PATCH 13/21] xfs: repair the AGI
` [PATCH 14/21] xfs: repair free space btrees
` [PATCH 15/21] xfs: repair inode btrees
` [PATCH 16/21] xfs: repair the rmapbt
` [PATCH 17/21] xfs: repair refcount btrees
` [PATCH 18/21] xfs: repair inode records
` [PATCH 19/21] xfs: zap broken inode forks
` [PATCH 20/21] xfs: repair inode block maps
` [PATCH 21/21] xfs: repair damaged symlinks

xfs_scrub: call for testing
 2018-04-02  4:23 UTC  (5+ messages)

[lkp-robot] [xfs] 19957a1816: blogbench.write_score 5.2% improvement
 2018-04-02  3:16 UTC 

KASAN: use-after-free Read in radix_tree_next_chunk
 2018-03-31 20:47 UTC 

KASAN: use-after-free Read in radix_tree_next_chunk
 2018-03-31 20:47 UTC 

[PATCH v7 00/14] dax: fix dma vs truncate/hole-punch
 2018-03-30 15:16 UTC  (24+ messages)
` [PATCH v7 02/14] fs, dax: prepare for dax-specific address_space_operations
` [PATCH v7 03/14] block, dax: remove dead code in blkdev_writepages()
` [PATCH v7 04/14] xfs, dax: introduce xfs_dax_aops
` [PATCH v7 05/14] ext4, dax: introduce ext4_dax_aops
` [PATCH v7 06/14] ext2, dax: introduce ext2_dax_aops
` [PATCH v7 07/14] fs, dax: use page->mapping to warn if truncate collides with a busy page
` [PATCH v7 08/14] mm, dax: enable filesystems to trigger dev_pagemap ->page_free callbacks
` [PATCH v7 09/14] mm, dev_pagemap: introduce CONFIG_DEV_PAGEMAP_OPS
` [PATCH v7 12/14] xfs: prepare xfs_break_layouts() to be called with XFS_MMAPLOCK_EXCL

[PATCH] xfs: skip scrub xref if corruption already noted
 2018-03-29 17:12 UTC 

[PATCH 0/10] xfsprogs: remove old cruft
 2018-03-29 15:53 UTC  (14+ messages)
` [PATCH 01/10] xfs_repair: remove unused fs_attributes_allowed
` [PATCH 02/10] xfs_repair: remove unused fs_attributes2_allowed
` [PATCH 03/10] xfs_repair: remove unused fs_has_extflgbit_allowed
` [PATCH 04/10] xfs_repair: remove unused fs_aligned_inodes_allowed
` [PATCH 05/10] xfs_repair: remove unused fs_sb_feature_bits_allowed
` [PATCH 06/10] xfs_repair: remove unused fs_has_extflgbit_allowed
` [PATCH 07/10] xfs_repair: remove unused fs_shared_allowed variable
` [PATCH 08/10] xfs_repair: remove pre_65_beta option
` [PATCH 09/10] xfs_repair: test XFS_SB_VERSION_SHAREDBIT only once
` [PATCH 10/10] libxfs: warn about deprecation of irix, freebsd, darwin
` [PATCH 11/10] xfsprogs: remove unused delete_attr_ok

[PATCH] xfs: do not log/recover swapext extent owner changes for deleted inodes
 2018-03-29 13:26 UTC  (4+ messages)
` [PATCH V3] "

file corruptions, 2nd half of 512b block
 2018-03-29  1:09 UTC  (9+ messages)

[PATCH v14 00/20] xfs-4.17: online repair support
 2018-03-28 23:42 UTC  (23+ messages)
` [PATCH 01/20] xfs: add helpers to calculate btree size
` [PATCH 02/20] xfs: expose various functions to repair code
` [PATCH 03/20] xfs: add repair helpers for the reverse mapping btree
` [PATCH 04/20] xfs: add repair helpers for the reference count btree
` [PATCH 05/20] xfs: add BMAPI_NORMAP flag to perform block remapping without updating rmpabt
` [PATCH 06/20] xfs: halt auto-reclamation activities while rebuilding rmap
` [PATCH 07/20] xfs: create tracepoints for online repair
` [PATCH 08/20] xfs: implement the metadata repair ioctl flag

[PATCH v2 1/3] fstests: log-writes: Add support to output human readable flags
 2018-03-28 23:36 UTC  (8+ messages)
` [PATCH v2 2/3] fstests: log-writes: Add support for METADATA flag
` [PATCH v2 3/3] fstests: generic: Check the fs after each FUA writes

[PATCH V2] xfs: implement cgroup writeback support
 2018-03-28 22:35 UTC  (13+ messages)

[PATCH] xfs_scrub: fix build with older kernel headers
 2018-03-28 20:12 UTC  (5+ messages)

[PATCH 0/4] misc. fstests changes
 2018-03-28 12:13 UTC  (5+ messages)
` [PATCH 3/4] xfs: test agfl reset on bad list wrapping
` [PATCH 4/4] xfs/278: find sfdir inode field prefix

[PATCH 0/3 V2] iomap: Use FUA for O_DSYNC DIO writes
 2018-03-28  7:48 UTC  (8+ messages)
` [PATCH 1/3] xfs: move generic_write_sync calls inwards
` [PATCH 2/3] iomap: iomap_dio_rw() handles all sync writes
` [PATCH 3/3] iomap: Use FUA for pure data O_DSYNC DIO writes

[PATCH v3] xfs: test agfl reset on bad list wrapping
 2018-03-28  1:20 UTC  (5+ messages)

[ANNOUNCE] xfsprogs: for-next updated to 8aee048
 2018-03-27 22:46 UTC 

[PATCH 0/3] xfsprogs: misc coverity fixes
 2018-03-27 22:37 UTC  (13+ messages)
` [PATCH 1/3] xfs_scrub: synchronize error levels & logging
  ` [PATCH 1/3 V2] "
` [PATCH 2/3] xfs_scrub: initialize movon in
` [PATCH 3/3] libfrog: enforce dir XOR blkdev in __fs_table_lookup_mount
  ` [PATCH 3/3 V2] libfrog: handle NULL dir && "

[PATCH 0/2] xfs: don't require a dirty log on snapshots
 2018-03-27 21:17 UTC  (5+ messages)
` [PATCH 2/2] xfs: don't dirty snapshot logs for unlinked inode recovery

[ANNOUNCE] xfsprogs: for-next updated to 04a2d5d
 2018-03-27 20:28 UTC 

[PATCH] xfs_io: fix operation time reporting
 2018-03-27 18:28 UTC  (2+ messages)

[PATCH][next] xfs: fix zero'ing of ILOG owner bits by using correct bitwise operator
 2018-03-27 14:40 UTC 

[PATCH] fs: don't scan the inode cache before SB_ACTIVE is set
 2018-03-27  7:24 UTC  (3+ messages)
` [PATCH V2] fs: don't scan the inode cache before SB_BORN "


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