public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2016-08-17 15:02:32 to 2016-08-25 23:34:44 UTC [more...]

[PATCH v8 00/71] xfs: add reflink and dedupe support
 2016-08-25 23:34 UTC  (25+ messages)
` [PATCH 01/71] xfs: remove xfs_btree_bigkey
` [PATCH 02/71] xfs: create a standard btree size calculator code
` [PATCH 03/71] xfs: count the blocks in a btree
` [PATCH 04/71] xfs: defer should allow ->finish_item to request a new transaction
` [PATCH 05/71] xfs: introduce tracepoints for AG reservation code
` [PATCH 06/71] xfs: set up per-AG free space reservations
` [PATCH 07/71] xfs: define tracepoints for refcount btree activities
` [PATCH 08/71] xfs: introduce refcount btree definitions
` [PATCH 09/71] xfs: add refcount btree stats infrastructure
` [PATCH 10/71] xfs: refcount btree add more reserved blocks
` [PATCH 11/71] xfs: define the on-disk refcount btree format
` [PATCH 12/71] xfs: add refcount btree support to growfs
` [PATCH 13/71] xfs: account for the refcount btree in the alloc/free log reservation
` [PATCH 14/71] xfs: add refcount btree operations
` [PATCH 15/71] xfs: create refcount update intent log items
` [PATCH 16/71] xfs: log refcount intent items
` [PATCH 17/71] xfs: adjust refcount of an extent of blocks in refcount btree
` [PATCH 18/71] xfs: connect refcount adjust functions to upper layers
` [PATCH 19/71] xfs: adjust refcount when unmapping file blocks
` [PATCH 20/71] xfs: add refcount btree block detection to log recovery
` [PATCH 21/71] xfs: refcount btree requires more reserved space
` [PATCH 22/71] xfs: introduce reflink utility functions
` [PATCH 23/71] xfs: create bmbt update intent log items
` [PATCH 24/71] xfs: log bmap intent items

[PATCH v8 0/6] vfs: help support reflink for XFS
 2016-08-25 23:31 UTC  (7+ messages)
` [PATCH 1/6] vfs: fix return type of ioctl_file_dedupe_range
` [PATCH 2/6] vfs: cap dedupe request structure size at PAGE_SIZE
` [PATCH 3/6] vfs: support FS_XFLAG_REFLINK and FS_XFLAG_COWEXTSIZE
` [PATCH 4/6] fs: add iomap_file_dirty
` [PATCH 5/6] iomap: don't set FIEMAP_EXTENT_MERGED for extent based filesystems
` [PATCH 6/6] iomap: add a flag to report shared extents

[PATCH v8 00/13] xfstests: fixes and new tests for rmap/reflink/fsmap
 2016-08-25 23:29 UTC  (14+ messages)
` [PATCH 01/13] tests/xfs: don't run tests if cowextsize isn't present
` [PATCH 02/13] xfs/122: decrease the log update done item sizes
` [PATCH 03/13] xfs/{130,235}: deal with an unreplayable dirty log
` [PATCH 04/13] generic/159, 160: deal with EACCESS -> EPERM transition
` [PATCH 05/13] xfs/122: test btree header block sizes
` [PATCH 06/13] xfs: fix $XFS_DB_PROG usage
` [PATCH 07/13] xfs: test swapext with reflink
` [PATCH 08/13] xfs: more rmapbt tests
` [PATCH 09/13] xfs: test realtime rmapbt code
` [PATCH 10/13] xfs: test getfsmap ioctl
` [PATCH 11/13] xfs: test getbmapx shared extent reporting
` [PATCH 12/13] xfs/122: track xfs_scrub_metadata
` [PATCH 13/13] xfs/122: check the ag reservation counter ioctl

[PATCH v8 0/7] xfs-docs: reorganize chapters, document rmap and reflink
 2016-08-25 23:27 UTC  (8+ messages)
` [PATCH 1/7] journaling_log: fix some typos in the section about EFDs
` [PATCH 2/7] xfsdocs: document known testing procedures
` [PATCH 3/7] xfsdocs: update the on-disk format with changes for Linux 4.5
` [PATCH 4/7] xfsdocs: move the discussions of short and long format btrees to a separate chapter
` [PATCH 5/7] xfsdocs: reverse-mapping btree documentation
` [PATCH 6/7] xfsdocs: document refcount btree and reflink
` [PATCH 7/7] xfsdocs: document the realtime reverse mapping btree

[PATCH] Make __xfs_xattr_put_listen preperly report errors
 2016-08-25 22:42 UTC  (7+ messages)

[PATCHv2 xfsprogs 00/14] Convert from off64_t to off_t
 2016-08-25 22:01 UTC  (37+ messages)
` [PATCHv2 xfsprogs 04/14] replace [fl]stat64 by equivalent [fl]stat
` [PATCHv2 xfsprogs 05/14] replace ftruncate64 by equivalent ftruncate
` [PATCHv2 xfsprogs 06/14] replace lseek64 by equivalent lseek
` [PATCHv2 xfsprogs 07/14] replace pread64/pwrite64 by equivalent pread/pwrite
` [PATCHv2 xfsprogs 08/14] replace sendfile64 by equivalent sendfile
` [PATCHv2 xfsprogs 01/14] configure: use AC_SYS_LARGEFILE
` [PATCHv2 xfsprogs 03/14] remove unecessary definitions of _FILE_OFFSET_BITS
` [PATCHv2 xfsprogs 14/14] platform: remove use of off64_t
` [PATCHv2 xfsprogs 13/14] xfs.h: require transparent LFS for all users
` [PATCHv2 xfsprogs 09/14] fadvise.c: replace posix_fadvise64 by equivalent posix_fadvise
` [PATCHv2 xfsprogs 10/14] Makefile: disable fsr for Mac OS X
` [PATCHv2 xfsprogs 11/14] fsr: remove workaround for statvfs on "
` [PATCHv2 xfsprogs 12/14] replace statvfs64 by equivalent statvfs
` [PATCHv2 xfsprogs 02/14] configure: error out when LFS does not work

[PATCH 0/7] xfsprogs: reverse mapping fixes
 2016-08-25 21:03 UTC  (16+ messages)
` [PATCH 1/7] xfs: don't perform lookups on zero-height btrees
` [PATCH 2/7] xfs: fix some key handling problems in _btree_simple_query_range
` [PATCH 3/7] xfs: simple btree query range should look right if LE lookup fails
` [PATCH 4/7] libxcmd: fix mount option parsing to find rt/log devices
` [PATCH 5/7] misc: fix Coverity errors
  ` [PATCH v2 "
` [PATCH 6/7] misc: fix libxfs api violations
` [PATCH 7/7] xfs_repair: fix naming problems in repair/rmap.c

Comment attirer des clients grace a YouTube (formation offerte)
 2016-08-25 20:03 UTC 

iomap write fixes
 2016-08-25 14:37 UTC  (9+ messages)
` [PATCH 1/4] xfs: move xfs_bmbt_to_iomap up
` [PATCH 2/4] xfs: factor our a helper to calculate the EOF alignment
` [PATCH 3/4] xfs: make xfs_inode_set_eofblocks_tag cheaper for the common case
` [PATCH 4/4] xfs: rewrite and optimize the delalloc write path

[PATCH] xfs: prevent dropping ioend completions during buftarg wait
 2016-08-25  8:12 UTC  (2+ messages)

[PATCH 0/5] xfs: reverse mapping fixes
 2016-08-25  8:11 UTC  (11+ messages)
` [PATCH 1/5] xfs: don't log the entire end of the AGF
` [PATCH 2/5] xfs: don't perform lookups on zero-height btrees
` [PATCH 3/5] xfs: fix some key handling problems in _btree_simple_query_range
` [PATCH 4/5] xfs: simple btree query range should look right if LE lookup fails
` [PATCH 5/5] xfs: disallow mounting of realtime + rmap filesystems

[PATCH] xfs: fix superblock inprogress check
 2016-08-25  8:08 UTC  (3+ messages)

[PATCH] xfs/033: source mkfs output again if isize less than 512
 2016-08-25  8:06 UTC  (2+ messages)

[PATCH] xfs: disallow mounting of realtime + rmap filesystems
 2016-08-25  8:05 UTC  (3+ messages)

[PATCH] xfs: don't perform lookups on zero-height btrees
 2016-08-25  8:04 UTC  (4+ messages)

"Bad page state" errors when calling BULKSTAT under memory pressure?
 2016-08-25  0:48 UTC  (3+ messages)

Boiling water faucet & boiling water tank & water filter
 2016-08-24 21:53 UTC 

[PATCH] xfs: kill __uint*_t and __int*_t
 2016-08-24 21:07 UTC  (5+ messages)

[PATCH v4 0/2] xfs_quota: allow operation on ext4 for project quotas
 2016-08-23 22:12 UTC  (3+ messages)
` [PATCH v4 1/2] xfs_quota: add capabilities for use on ext4
` [PATCH v4 2/2] xfs_quota: additional changes to allow "

[PATCH v3 0/3] xfs_quota: allow operation on ext4 for project quotas
 2016-08-23 19:11 UTC  (5+ messages)
` [PATCH v3 1/2] xfs_quota: add capabilities for use on ext4
` [PATCH v3 2/2] xfs_quota: additional changes to allow "

[PATCH] xfs: close xfs_wait_buftarg() race with buffer lookups
 2016-08-23 12:54 UTC  (3+ messages)

Luxury bag for your checking
 2016-08-23  7:40 UTC 

Invitation to visit Shrink Terminal and Solder Sleeve booth of Hampool in Automechanika show in FRANKFURT, Germany during 13-17 September, 2016
 2016-08-23  6:17 UTC 

[PATCH] iomap: don't set FIEMAP_EXTENT_MERGED for extent based filesystems
 2016-08-23  1:27 UTC  (2+ messages)

[PATCH v2 0/3] xfs_quota: allow operation on ext4 for project quotas
 2016-08-23  0:24 UTC  (15+ messages)
` [PATCH v2 1/3] xfs_quota: add capabilities for use on ext4
` [PATCH v2 2/3] xfs_quota: changes to accomodate hoisted ioctl defs
` [PATCH v2 3/3] xfs_quota: additional changes to allow use on ext4

[PATCH, RFC] xfs: remove i_iolock and use i_rwsem in the VFS inode instead
 2016-08-22  8:34 UTC  (6+ messages)

[ANNOUNCE] xfsprogs: for-next branch updated to c563396
 2016-08-22  6:20 UTC 

[PATCH 1/2] xfs/006: move code about resetting error handling to common/rc
 2016-08-22  6:12 UTC  (3+ messages)
` [PATCH 2/2] fstests: xfs EIO error handling test

[PATCH V4] xfs_db: add crc manipulation commands
 2016-08-22  0:54 UTC  (5+ messages)
` [PATCH V5] "

IRQ Lock Inversion dependency detected?
 2016-08-20 23:23 UTC  (2+ messages)

[PATCH v7 00/17] xfstests: fixes and new tests for rmap/reflink/etc
 2016-08-19 21:53 UTC  (6+ messages)
` [PATCH 13/17] xfs: test swapext with reflink

[PATCH 1/2] common/rc: add functions to check or write objects under /sys/fs/$FSTYP
 2016-08-19 17:55 UTC  (3+ messages)
` [PATCH 2/2] fstests: xfs EIO error handling test

[PATCH] PING... mkfs.xfs: fix static-lib build
 2016-08-19 10:28 UTC  (2+ messages)

[GIT PULL] xfs, iomap: fixes for 4.8-rc3
 2016-08-19  5:14 UTC 

RFC: dropping IRIX support in xfsprogs
 2016-08-19  2:07 UTC  (6+ messages)
`  "

[INFO: possible circular locking dependency detected ] this is false alarm or not?
 2016-08-18 19:40 UTC 

iomap infrastructure and multipage writes V5
 2016-08-18 13:18 UTC  (3+ messages)
` [PATCH 08/14] fs: iomap based fiemap implementation

账号密码过期提醒。
 2016-08-18  2:25 UTC 

XFS on top of LVM span in AWS. Stripe or are AG's good enough?
 2016-08-17 17:26 UTC  (6+ messages)

xfs trace in 4.4.2 / also in 4.3.3 WARNING fs/xfs/xfs_aops.c:1232 xfs_vm_releasepage
 2016-08-17 15:37 UTC  (12+ messages)
              ` shrink_active_list/try_to_release_page bug? (was Re: xfs trace in 4.4.2 / also in 4.3.3 WARNING fs/xfs/xfs_aops.c:1232 xfs_vm_releasepage)

[PATCH] xfs_quota: wire up XFS_GETQSTATV
 2016-08-17 15:02 UTC  (3+ messages)
` [PATCH V2] "


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