linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-10-10 23:12:05 to 2020-10-15 09:52:32 UTC [more...]

[PATCH 00/14] Transparent Huge Page support for XFS
 2020-10-15  9:52 UTC  (32+ messages)
` [PATCH 01/14] fs: Support THPs in vfs_dedupe_file_range
` [PATCH 02/14] fs: Make page_mkwrite_check_truncate thp-aware
` [PATCH 03/14] iomap: Support THPs in BIO completion path
` [PATCH 04/14] iomap: Support THPs in iomap_adjust_read_range
` [PATCH 05/14] iomap: Support THPs in invalidatepage
` [PATCH 06/14] iomap: Support THPs in iomap_is_partially_uptodate
` [PATCH 07/14] iomap: Support THPs in readpage
` [PATCH 08/14] iomap: Support THPs in readahead
` [PATCH 09/14] iomap: Change iomap_write_begin calling convention
` [PATCH 10/14] iomap: Handle THPs when writing to pages
` [PATCH 11/14] iomap: Support THP writeback
` [PATCH 12/14] iomap: Inline data shouldn't see THPs
` [PATCH 13/14] iomap: Handle tail pages in iomap_page_mkwrite
` [PATCH 14/14] xfs: Support THPs

[PATCH 0/2] iomap: zero dirty pages over unwritten extents
 2020-10-15  9:49 UTC  (9+ messages)
` [PATCH 1/2] iomap: use page dirty state to seek data "
` [PATCH 2/2] iomap: zero cached pages over unwritten extents on zero range

[PATCH v2 00/16] Allow readpage to return a locked page
 2020-10-15  9:42 UTC  (10+ messages)
` [PATCH v2 01/16] mm: Add AOP_UPDATED_PAGE return value
` [PATCH v2 02/16] mm: Inline wait_on_page_read into its one caller
` [PATCH v2 15/16] iomap: Inline iomap_iop_set_range_uptodate "
` [PATCH v2 16/16] iomap: Make readpage synchronous

[PATCH V6 00/11] Bail out if transaction can cause extent count to overflow
 2020-10-15  8:41 UTC  (22+ messages)
` [PATCH V6 01/11] xfs: Add helper for checking per-inode extent count overflow
` [PATCH V6 02/11] xfs: Check for extent overflow when trivally adding a new extent
` [PATCH V6 03/11] xfs: Check for extent overflow when punching a hole
` [PATCH V6 04/11] xfs: Check for extent overflow when adding/removing xattrs
` [PATCH V6 05/11] xfs: Check for extent overflow when adding/removing dir entries
` [PATCH V6 06/11] xfs: Check for extent overflow when writing to unwritten extent
` [PATCH V6 07/11] xfs: Check for extent overflow when moving extent from cow to data fork
` [PATCH V6 08/11] xfs: Check for extent overflow when remapping an extent
` [PATCH V6 09/11] xfs: Check for extent overflow when swapping extents
` [PATCH V6 10/11] xfs: Introduce error injection to reduce maximum inode fork extent count
` [PATCH V6 11/11] xfs: Introduce error injection to allocate only minlen size extents for files

[PATCH v8 0/2] avoid xfs transaction reservation recursion
 2020-10-15  8:31 UTC  (5+ messages)
` [PATCH v8 1/2] mm: Add become_kswapd and restore_kswapd
` [PATCH v8 2/2] xfs: avoid transaction reservation recursion

[RFC PATCH] xfs: remove unnecessary null check in xfs_generic_create
 2020-10-15  8:29 UTC  (2+ messages)

[PATCH] libhandle: fix potential unterminated string problem
 2020-10-15  8:29 UTC  (2+ messages)

[PATCH] libfrog: fix a potential null pointer dereference
 2020-10-15  8:26 UTC  (2+ messages)

[PATCH] xfsprogs: ignore autofs mount table entries
 2020-10-15  8:25 UTC  (2+ messages)

[PATCH v5 0/3] xfs: random fixes for disk quota
 2020-10-15  8:25 UTC  (7+ messages)
` [PATCH v5 1/3] xfs: delete duplicated tp->t_dqinfo null check and allocation
` [PATCH v5 2/3] xfs: check tp->t_dqinfo value instead of the XFS_TRANS_DQ_DIRTY flag
` [PATCH v5 3/3] xfs: directly return if the delta equal to zero

[PATCH v11 0/4] xfs: Remove wrappers for some semaphores
 2020-10-15  8:21 UTC  (23+ messages)
` [PATCH v11 1/4] xfs: Refactor xfs_isilocked()
` [PATCH v11 2/4] xfs: clean up whitespace in xfs_isilocked() calls
` [PATCH v11 3/4] xfs: xfs_isilocked() can only check a single lock type
` [PATCH v11 4/4] xfs: replace mrlock_t with rw_semaphores

[PATCH v2] xfs_scrub: don't use statvfs to collect filesystem summary counts
 2020-10-15  8:16 UTC  (6+ messages)

[PATCH] xfs: fix high key handling in the rt allocator's query_range function
 2020-10-15  8:11 UTC  (2+ messages)

[PATCH 0/2] xfs: hopefully the last few rt fixes
 2020-10-15  7:54 UTC  (11+ messages)
` [PATCH 1/2] xfs: annotate grabbing the realtime bitmap/summary locks in growfs
` [PATCH 2/2] xfs: fix fallocate functions when rtextsize is larger than 1
` [PATCH 3/2] xfs: test rtalloc alignment and math errors
` [PATCH 4/2] xfs: test running growfs on the realtime volume

[PATCH 00/27] [RFC, WIP] xfsprogs: xfs_buf unification and AIO
 2020-10-15  7:29 UTC  (29+ messages)
` [PATCH 01/27] xfsprogs: remove unused buffer tracing code
` [PATCH 02/27] xfsprogs: remove unused IO_DEBUG functionality
` [PATCH 03/27] libxfs: get rid of b_bcount from xfs_buf
` [PATCH 04/27] libxfs: rename buftarg->dev to btdev
` [PATCH 05/27] xfsprogs: get rid of ancient btree tracing fragments
` [PATCH 06/27] xfsprogs: remove xfs_buf_t typedef
` [PATCH 07/27] xfsprogs: introduce liburcu support
` [PATCH 08/27] libxfs: add spinlock_t wrapper
` [PATCH 09/27] atomic: convert to uatomic
` [PATCH 10/27] libxfs: add kernel-compatible completion API
` [PATCH 11/27] libxfs: add wrappers for kernel semaphores
` [PATCH 12/27] xfsprogs: convert use-once buffer reads to uncached IO
` [PATCH 13/27] libxfs: introduce userspace buftarg infrastructure
` [PATCH 14/27] xfs: rename libxfs_buftarg_init to libxfs_open_devices()
` [PATCH 15/27] libxfs: introduce userspace buftarg infrastructure
` [PATCH 16/27] libxfs: add a synchronous IO engine to the buftarg
` [PATCH 17/27] xfsprogs: convert libxfs_readbufr to libxfs_buf_read_uncached
` [PATCH 18/27] libxfs: convert libxfs_bwrite to buftarg IO
` [PATCH 19/27] libxfs: add cache infrastructure to buftarg
` [PATCH 20/27] libxfs: add internal lru to btcache
` [PATCH 21/27] libxfs: Add kernel list_lru wrapper
` [PATCH 22/27] libxfs: introduce new buffer cache infrastructure
` [PATCH 23/27] libxfs: use PSI information to detect memory pressure
` [PATCH 24/27] libxfs: add a buftarg cache shrinker implementation
` [PATCH 25/27] libxfs: switch buffer cache implementations
` [PATCH 26/27] build: set platform_defs.h.in dependency correctly
` [PATCH 27/27] libxfs: convert sync IO buftarg engine to AIO

[PATCH 0/5] mkfs: Configuration file defined options
 2020-10-15  6:09 UTC  (15+ messages)
` [PATCH 1/5] build: add support for libinih for mkfs
` [PATCH 2/5] mkfs: add initial ini format config file parsing support
` [PATCH 3/5] mkfs: constify various strings
` [PATCH 4/5] mkfs: hook up suboption parsing to ini files
` [PATCH 5/5] mkfs: document config files in mkfs.xfs(8)

[RFC PATCH] xfs: support shrinking unused space in the last AG
 2020-10-15  1:49 UTC  (6+ messages)

dbench throughput(sync, reflink=0|1) on xfs over hardware throughput
 2020-10-14 22:45 UTC  (3+ messages)

dbench throughput on xfs over hardware limit(6Gb/s)
 2020-10-14 22:43 UTC  (5+ messages)

[GIT PULL] xfs: new code for 5.10, part 1
 2020-10-14 21:45 UTC  (2+ messages)

[GIT PULL] iomap: new code for 5.10-rc1
 2020-10-14 19:30 UTC  (2+ messages)

[PATCH v6 0/3] xfsprogs: consolidate stripe validation
 2020-10-14 16:20 UTC  (6+ messages)
` [PATCH v6 1/3] libxfs: allow i18n to xfs printk
` [PATCH v6 2/3] xfs: introduce xfs_validate_stripe_geometry()
` [PATCH v6 3/3] mkfs: make use of xfs_validate_stripe_geometry()

[PATCH v3] xfs: introduce xfs_validate_stripe_geometry()
 2020-10-14 16:19 UTC  (4+ messages)
` [PATCH v3 RESEND] "

[ANNOUNCE] xfsprogs for-next updated to 4aaeedc4 / v5.9.0-rc1
 2020-10-13 16:35 UTC 

[ANNOUNCE] xfs-linux: for-next updated to 7e75d8faa7e6
 2020-10-13 16:22 UTC 

[PATCH v2] xfs: introduce xfs_validate_stripe_geometry()
 2020-10-13 14:11 UTC  (5+ messages)

Disinfectant
 2020-10-13  8:02 UTC 

[PATCH] xfs: fix Kconfig asking about XFS_SUPPORT_V4 when XFS_FS=n
 2020-10-12 21:23 UTC  (2+ messages)

[PATCH] generic: test reflinked file corruption after short COW
 2020-10-12 15:46 UTC  (4+ messages)
` [PATCH V2] "

[PATCH v5 0/3] xfsprogs: consolidate stripe validation
 2020-10-12 14:20 UTC  (5+ messages)
` [PATCH v5 3/3] mkfs: make use of xfs_validate_stripe_factors()

[PATCH] xfs: introduce xfs_validate_stripe_factors()
 2020-10-12 14:17 UTC  (4+ messages)

XFS deadlock in 5.8.14-arch
 2020-10-12 12:35 UTC  (2+ messages)

VM_BUG_ON_PAGE(page_to_pgoff(page) != offset) on s390
 2020-10-11 20:23 UTC  (4+ messages)

Feature question
 2020-10-11 19:31 UTC 


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).