linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-09-04 05:12:34 to 2019-09-06 03:01:50 UTC [more...]

[PATCH0/8 v3] xfs: log race fixes and cleanups
 2019-09-06  3:01 UTC  (15+ messages)
` [PATCH 1/8] xfs: push the AIL in xlog_grant_head_wake
` [PATCH 2/8] xfs: fix missed wakeup on l_flush_wait
` [PATCH 3/8] xfs: prevent CIL push holdoff in log recovery
      ` [PATCH 3/8 v2] "
` [PATCH 4/8] xfs: factor debug code out of xlog_state_do_callback()
` [PATCH 5/8] xfs: factor callbacks "
` [PATCH 6/8] xfs: factor iclog state processing "
` [PATCH 7/8] xfs: push iclog state cleaning into xlog_state_clean_log
` [PATCH 8/8] xfs: push the grant head when the log head moves forward

[PATCH 1/2] xfsprogs: copy_range don't truncate dstfile
 2019-09-06  2:18 UTC  (7+ messages)
` [PATCH 2/2] xfsprogs: copy_range: let = (src_size - src_offset) if len omitted

[PATCH] xfs: Use WARN_ON_ONCE for bailout mount-operation
 2019-09-06  1:10 UTC  (2+ messages)

[PATCH] xfs: fix the dax supported check in xfs_ioctl_setattr_dax_invalidate
 2019-09-06  1:03 UTC  (2+ messages)

[PATCH 0/7] xfs: log race fixes and cleanups
 2019-09-06  0:02 UTC  (31+ messages)
` [PATCH 1/7] xfs: push the AIL in xlog_grant_head_wake
` [PATCH 2/7] xfs: fix missed wakeup on l_flush_wait
` [PATCH 3/7] xfs: factor debug code out of xlog_state_do_callback()
` [PATCH 4/7] xfs: factor callbacks "
` [PATCH 5/7] xfs: factor iclog state processing "
` [PATCH 6/7] xfs: push iclog state cleaning into xlog_state_clean_log
` [PATCH 7/7] xfs: push the grant head when the log head moves forward

[PATCH v4 0/15] CoW support for iomap
 2019-09-05 23:24 UTC  (27+ messages)
` [PATCH 01/15] iomap: Use a srcmap for a read-modify-write I/O
` [PATCH 02/15] iomap: Read page from srcmap if IOMAP_F_COW is set
` [PATCH 03/15] btrfs: Eliminate PagePrivate for btrfs data pages
` [PATCH 04/15] btrfs: Add a simple buffered iomap write
` [PATCH 05/15] btrfs: Add CoW in iomap based writes
` [PATCH 06/15] btrfs: remove buffered write code made unnecessary
` [PATCH 07/15] fs: Export generic_file_buffered_read()
` [PATCH 08/15] btrfs: basic direct read operation
` [PATCH 09/15] btrfs: Carve out btrfs_get_extent_map_write() out of btrfs_get_blocks_write()
` [PATCH 10/15] btrfs: Rename __endio_write_update_ordered() to btrfs_update_ordered_extent()
` [PATCH 11/15] iomap: use a function pointer for dio submits
` [PATCH 12/15] btrfs: Use iomap_dio_rw for performing direct I/O writes
` [PATCH 13/15] btrfs: Remove btrfs_dio_data and __btrfs_direct_write
` [PATCH 14/15] btrfs: update inode size during bio completion
` [PATCH 15/15] xfs: Use the new iomap infrastructure for CoW

[PATCH v3 00/19] Delayed Attributes
 2019-09-05 22:18 UTC  (20+ messages)
` [PATCH v3 01/19] xfs: Replace attribute parameters with struct xfs_name
` [PATCH v3 02/19] xfs: Embed struct xfs_name in xfs_da_args
` [PATCH v3 03/19] xfs: Add xfs_dabuf defines
` [PATCH v3 04/19] xfs: Add xfs_has_attr and subroutines
` [PATCH v3 05/19] xfs: Factor out new helper functions xfs_attr_rmtval_set
` [PATCH v3 06/19] xfs: Factor up trans handling in xfs_attr3_leaf_flipflags
` [PATCH v3 07/19] xfs: Factor out xfs_attr_leaf_addname helper
` [PATCH v3 08/19] xfs: Factor up commit from xfs_attr_try_sf_addname
` [PATCH v3 09/19] xfs: Factor up trans roll from xfs_attr3_leaf_setflag
` [PATCH v3 10/19] xfs: Add xfs_attr3_leaf helper functions
` [PATCH v3 11/19] xfs: Factor out xfs_attr_rmtval_invalidate
` [PATCH v3 12/19] xfs: Factor up trans roll in xfs_attr3_leaf_clearflag
` [PATCH v3 13/19] xfs: Add delay context to xfs_da_args
` [PATCH v3 14/19] xfs: Add delayed attribute routines
` [PATCH v3 15/19] xfs: Set up infastructure for deferred attribute operations
` [PATCH v3 16/19] xfs: Add xfs_attr_set_deferred and xfs_attr_remove_deferred
` [PATCH v3 17/19] xfs: Add feature bit XFS_SB_FEAT_INCOMPAT_LOG_DELATTR
` [PATCH v3 18/19] xfs: Enable delayed attributes
` [PATCH v3 19/19] xfs_io: Add delayed attributes error tag

[PATCH 2/9] cachefiles: drop direct usage of ->bmap method
 2019-09-05 22:44 UTC  (10+ messages)
    ` [PATCH 0/9 V5] New ->fiemap infrastructure and ->bmap removal

[PATCH 1/8 v2] xfs: log race fixes and cleanups
 2019-09-05 22:28 UTC  (23+ messages)
` [PATCH 1/8] xfs: push the AIL in xlog_grant_head_wake
` [PATCH 2/8] xfs: fix missed wakeup on l_flush_wait
` [PATCH 3/8] xfs: prevent CIL push holdoff in log recovery
` [PATCH 4/8] xfs: factor debug code out of xlog_state_do_callback()
` [PATCH 5/8] xfs: factor callbacks "
` [PATCH 6/8] xfs: factor iclog state processing "
` [PATCH 7/8] xfs: push iclog state cleaning into xlog_state_clean_log
` [PATCH 8/8] xfs: push the grant head when the log head moves forward

[PATCH v2 00/21] Delayed Attributes
 2019-09-05 22:18 UTC  (22+ messages)
` [PATCH v2 01/21] xfsprogs: Replace attribute parameters with struct xfs_name
` [PATCH v2 02/21] xfsprogs: Embed struct xfs_name in xfs_da_args
` [PATCH v2 03/21] xfsprogs: Add xfs_dabuf defines
` [PATCH v2 04/21] xfsprogs: Add xfs_has_attr and subroutines
` [PATCH v2 05/21] xfsprogs: Factor out new helper functions xfs_attr_rmtval_set
` [PATCH v2 06/21] xfsprogs: Factor up trans handling in xfs_attr3_leaf_flipflags
` [PATCH v2 07/21] xfsprogs: Factor out xfs_attr_leaf_addname helper
` [PATCH v2 08/21] xfsprogs: Factor up commit from xfs_attr_try_sf_addname
` [PATCH v2 09/21] xfsprogs: Factor up trans roll from xfs_attr3_leaf_setflag
` [PATCH v2 10/21] xfsprogs: Add xfs_attr3_leaf helper functions
` [PATCH v2 11/21] xfsprogs: Factor out xfs_attr_rmtval_invalidate
` [PATCH v2 12/21] xfsprogs: Factor up trans roll in xfs_attr3_leaf_clearflag
` [PATCH v2 13/21] xfsprogs: Add delay context to xfs_da_args
` [PATCH v2 14/21] xfsprogs: Add delayed attribute routines
` [PATCH v2 15/21] xfsprogs: Set up infastructure for deferred attribute operations
` [PATCH v2 16/21] xfsprogs: Add xfs_attr_set_deferred and xfs_attr_remove_deferred
` [PATCH v2 17/21] xfsprogs: Add feature bit XFS_SB_FEAT_INCOMPAT_LOG_DELATTR
` [PATCH v2 18/21] xfsprogs: Enable delayed attributes
` [PATCH v2 19/21] xfs_io: Add delayed attributes error tag
` [PATCH v2 20/21] xfsprogs: Add log item printing for ATTRI and ATTRD
` [PATCH v2 21/21] xfsprogs: Add delayed attribute flag to cmd

[PATCH v2 0/1] Add delayed attributes test
 2019-09-05 22:19 UTC  (2+ messages)
` [PATCH v2 1/1] xfstests: Add Delayed Attribute test

[PATCH] xfsprogs: copy_range don't truncate dstfile if same with srcfile
 2019-09-05  5:23 UTC  (5+ messages)

[PATCH] splice: only read in as much information as there is pipe buffer space
 2019-09-05  3:42 UTC  (3+ messages)
` [PATCH v2] "

[PATCH v2] xfsprogs: copy_range don't truncate dstfile
 2019-09-05  1:08 UTC  (3+ messages)

[PATCH v2 0/4] xfs_spaceman: use runtime support library
 2019-09-05  0:01 UTC  (5+ messages)
` [PATCH 3/4] xfs_spaceman: embed struct xfs_fd in struct fileio
` [PATCH 4/4] xfs_spaceman: convert open-coded unit conversions to helpers

[PATCH 00/12] libfrog: move header files
 2019-09-04 23:43 UTC  (25+ messages)
` [PATCH 01/12] libxfs: move topology declarations into separate header
` [PATCH 02/12] libfrog: move avl64.h to libfrog/
` [PATCH 03/12] libfrog: move bitmap.h "
` [PATCH 04/12] libfrog: move convert.h "
` [PATCH 05/12] libfrog: move fsgeom.h "
` [PATCH 06/12] libfrog: move ptvar.h "
` [PATCH 07/12] libfrog: move radix-tree.h "
` [PATCH 08/12] libfrog: move workqueue.h "
` [PATCH 09/12] libfrog: move crc32c.h "
` [PATCH 10/12] libfrog: move path.h "
` [PATCH 11/12] libfrog: move workqueue.h "
` [PATCH 12/12] libfrog: move libfrog.h to libfrog/util.h

[PATCH v3 0/8] libxfrog: wrap version ioctl calls
 2019-09-04 23:21 UTC  (6+ messages)
` [PATCH 1/8] xfsprogs: update spdx tags in LICENSES/
` [PATCH 3/8] libfrog: introduce xfs_fd to wrap an fd to a file on an xfs filesystem
` [PATCH 7/8] libfrog: create xfd_open function

[RFC PATCH v2 00/19] RDMA/FS DAX truncate proposal V1,000,002 ;-)
 2019-09-04 23:12 UTC  (8+ messages)
` [RFC PATCH v2 02/19] fs/locks: Add Exclusive flag to user Layout lease

[RFC PATCH v2 16/19] RDMA/uverbs: Add back pointer to system file object
 2019-09-04 22:25 UTC  (11+ messages)

[PATCH v2 0/2] guarantee natural alignment for kmalloc()
 2019-09-04 19:31 UTC  (13+ messages)
` [PATCH v2 2/2] mm, sl[aou]b: guarantee natural alignment for kmalloc(power-of-two)

[PATCH RFC V5] fs: New zonefs file system
 2019-09-04 18:15 UTC 

[ANNOUNCE] xfs-linux: for-next updated to bc56ad8c74b8
 2019-09-04 18:12 UTC 

[ANNOUNCE] xfs-linux: iomap-for-next updated to 68494b8e248f
 2019-09-04 18:11 UTC 

iomap_dio_rw ->end_io improvements
 2019-09-04 17:45 UTC  (8+ messages)
` [PATCH 2/2] iomap: move the iomap_dio_rw ->end_io callback into a structure

[RFC PATCH v2 00/19] RDMA/FS DAX truncate proposal V1,000,002 ;-)
 2019-09-04 16:54 UTC  (11+ messages)

[PATCH 0/3] xfs_scrub: fix bugs in vfs tree walk code
 2019-09-04 16:37 UTC  (8+ messages)
` [PATCH 1/3] xfs_scrub: refactor queueing of subdir scan work item
` [PATCH 2/3] xfs_scrub: fix nr_dirs accounting problems
` [PATCH 3/3] xfs_scrub: remove unnecessary wakeup wait in scan_fs_tree

[PATCH 0/1] xfsprogs: online health tracking support
 2019-09-04 14:51 UTC  (4+ messages)
` [PATCH 1/1] xfs_spaceman: report health problems

[PATCH v2] xfs_io: support splice data between two files
 2019-09-04 11:14 UTC  (4+ messages)

[PATCH] xfs: test the deadlock between the AGI and AGF with RENAME_WHITEOUT
 2019-09-04 10:01 UTC 

[PATCH v3] xfsprogs: provide a few compatibility typedefs
 2019-09-04  7:24 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).