linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-07-19 19:55:43 to 2023-07-24 09:59:49 UTC [more...]

[PATCH v2 00/47] use refcount+RCU method to implement lockless slab shrink
 2023-07-24  9:43 UTC  (33+ messages)
` [PATCH v2 01/47] mm: vmscan: move shrinker-related code into a separate file
` [PATCH v2 02/47] mm: shrinker: remove redundant shrinker_rwsem in debugfs operations
` [PATCH v2 03/47] mm: shrinker: add infrastructure for dynamically allocating shrinker
` [PATCH v2 04/47] kvm: mmu: dynamically allocate the x86-mmu shrinker
` [PATCH v2 05/47] binder: dynamically allocate the android-binder shrinker
` [PATCH v2 06/47] drm/ttm: dynamically allocate the drm-ttm_pool shrinker
` [PATCH v2 07/47] xenbus/backend: dynamically allocate the xen-backend shrinker
` [PATCH v2 08/47] erofs: dynamically allocate the erofs-shrinker
` [PATCH v2 09/47] f2fs: dynamically allocate the f2fs-shrinker
` [PATCH v2 10/47] gfs2: dynamically allocate the gfs2-glock shrinker
` [PATCH v2 11/47] gfs2: dynamically allocate the gfs2-qd shrinker
` [PATCH v2 12/47] NFSv4.2: dynamically allocate the nfs-xattr shrinkers
` [PATCH v2 13/47] nfs: dynamically allocate the nfs-acl shrinker
` [PATCH v2 14/47] nfsd: dynamically allocate the nfsd-filecache shrinker
` [PATCH v2 15/47] quota: dynamically allocate the dquota-cache shrinker
` [PATCH v2 16/47] ubifs: dynamically allocate the ubifs-slab shrinker
` [PATCH v2 17/47] rcu: dynamically allocate the rcu-lazy shrinker
` [PATCH v2 18/47] rcu: dynamically allocate the rcu-kfree shrinker
` [PATCH v2 19/47] mm: thp: dynamically allocate the thp-related shrinkers
` [PATCH v2 21/47] mm: workingset: dynamically allocate the mm-shadow shrinker
` [PATCH v2 22/47] drm/i915: dynamically allocate the i915_gem_mm shrinker
` [PATCH v2 23/47] drm/msm: dynamically allocate the drm-msm_gem shrinker
` [PATCH v2 24/47] drm/panfrost: dynamically allocate the drm-panfrost shrinker
` [PATCH v2 25/47] dm: dynamically allocate the dm-bufio shrinker
` [PATCH v2 26/47] dm zoned: dynamically allocate the dm-zoned-meta shrinker
` [PATCH v2 27/47] md/raid5: dynamically allocate the md-raid5 shrinker
` [PATCH v2 28/47] bcache: dynamically allocate the md-bcache shrinker
` [PATCH v2 29/47] vmw_balloon: dynamically allocate the vmw-balloon shrinker
` [PATCH v2 30/47] virtio_balloon: dynamically allocate the virtio-balloon shrinker
` [PATCH v2 31/47] mbcache: dynamically allocate the mbcache shrinker
` [PATCH v2 32/47] ext4: dynamically allocate the ext4-es shrinker
` [PATCH v2 35/47] nfsd: dynamically allocate the nfsd-reply shrinker

[PATCH V3 00/23] Metadump v2
 2023-07-24  4:35 UTC  (24+ messages)
` [PATCH V3 01/23] metadump: Use boolean values true/false instead of 1/0
` [PATCH V3 02/23] mdrestore: Fix logic used to check if target device is large enough
` [PATCH V3 03/23] metadump: Declare boolean variables with bool type
` [PATCH V3 04/23] metadump: Define and use struct metadump
` [PATCH V3 05/23] metadump: Add initialization and release functions
` [PATCH V3 06/23] metadump: Postpone invocation of init_metadump()
` [PATCH V3 07/23] metadump: Introduce struct metadump_ops
` [PATCH V3 08/23] metadump: Introduce metadump v1 operations
` [PATCH V3 09/23] metadump: Rename XFS_MD_MAGIC to XFS_MD_MAGIC_V1
` [PATCH V3 10/23] metadump: Define metadump v2 ondisk format structures and macros
` [PATCH V3 11/23] metadump: Define metadump ops for v2 format
` [PATCH V3 12/23] xfs_db: Add support to read from external log device
` [PATCH V3 13/23] metadump: Add support for passing version option
` [PATCH V3 14/23] mdrestore: Declare boolean variables with bool type
` [PATCH V3 15/23] mdrestore: Define and use struct mdrestore
` [PATCH V3 16/23] mdrestore: Detect metadump v1 magic before reading the header
` [PATCH V3 17/23] mdrestore: Add open_device(), read_header() and show_info() functions
` [PATCH V3 18/23] mdrestore: Introduce struct mdrestore_ops
` [PATCH V3 19/23] mdrestore: Replace metadump header pointer argument with a union pointer
` [PATCH V3 20/23] mdrestore: Introduce mdrestore v1 operations
` [PATCH V3 21/23] mdrestore: Extract target device size verification into a function
` [PATCH V3 22/23] mdrestore: Define mdrestore ops for v2 format
` [PATCH V3 23/23] mdrestore: Add support for passing log device as an argument

[PATCH v2 0/3] xfs: fix two problem when recovery intents fails
 2023-07-24  1:05 UTC  (7+ messages)
` [PATCH v2 3/3] xfs: make sure done item committed before cancel intents

Question: reserve log space at IO time for recover
 2023-07-24  0:57 UTC  (6+ messages)

[PATCHSET v4 0/8] Improve async iomap DIO performance
 2023-07-22 23:05 UTC  (37+ messages)
` [PATCH 1/8] iomap: cleanup up iomap_dio_bio_end_io()
` [PATCH 2/8] iomap: add IOMAP_DIO_INLINE_COMP
` [PATCH 3/8] iomap: treat a write through cache the same as FUA
` [PATCH 4/8] iomap: completed polled IO inline
` [PATCH 5/8] iomap: only set iocb->private for polled bio
` [PATCH 6/8] fs: add IOCB flags related to passing back dio completions
` [PATCH 7/8] io_uring/rw: add write support for IOCB_DIO_DEFER
` [PATCH 8/8] iomap: support IOCB_DIO_DEFER

[PATCH v2] xfs: fix a UAF when inode item push
 2023-07-22  2:57 UTC 

[GIT PULL] Improve iomap async dio performance
 2023-07-22  2:53 UTC  (4+ messages)

[PATCHSET v5 0/9] Improve async iomap DIO performance
 2023-07-21 16:52 UTC  (19+ messages)
` [PATCH 1/9] iomap: cleanup up iomap_dio_bio_end_io()
` [PATCH 2/9] iomap: add IOMAP_DIO_INLINE_COMP
` [PATCH 3/9] iomap: treat a write through cache the same as FUA
` [PATCH 4/9] iomap: completed polled IO inline
` [PATCH 5/9] iomap: only set iocb->private for polled bio
` [PATCH 6/9] fs: add IOCB flags related to passing back dio completions
` [PATCH 7/9] io_uring/rw: add write support for IOCB_DIO_CALLER_COMP
` [PATCH 8/9] iomap: support IOCB_DIO_CALLER_COMP
` [PATCH 9/9] iomap: use an unsigned type for IOMAP_DIO_* defines

[PATCH V3 00/23] Metadump v2
 2023-07-21  9:57 UTC  (16+ messages)
` [PATCH V3 01/23] metadump: Use boolean values true/false instead of 1/0
` [PATCH V3 02/23] mdrestore: Fix logic used to check if target device is large enough
` [PATCH V3 03/23] metadump: Declare boolean variables with bool type
` [PATCH V3 04/23] metadump: Define and use struct metadump
` [PATCH V3 05/23] metadump: Add initialization and release functions
` [PATCH V3 06/23] metadump: Postpone invocation of init_metadump()
` [PATCH V3 07/23] metadump: Introduce struct metadump_ops
` [PATCH V3 08/23] metadump: Introduce metadump v1 operations
` [PATCH V3 09/23] metadump: Rename XFS_MD_MAGIC to XFS_MD_MAGIC_V1
` [PATCH V3 10/23] metadump: Define metadump v2 ondisk format structures and macros
` [PATCH V3 11/23] metadump: Define metadump ops for v2 format
` [PATCH V3 12/23] xfs_db: Add support to read from external log device
` [PATCH V3 13/23] metadump: Add support for passing version option
` [PATCH V3 14/23] mdrestore: Declare boolean variables with bool type

allow building a kernel without buffer_heads
 2023-07-21  6:26 UTC  (22+ messages)
` [PATCH 1/6] fs: remove emergency_thaw_bdev
` [PATCH 2/6] fs: rename and move block_page_mkwrite_return
` [PATCH 3/6] block: open code __generic_file_write_iter for blkdev writes
` [PATCH 4/6] block: stop setting ->direct_IO
` [PATCH 5/6] block: use iomap for writes to block devices
` [PATCH 6/6] fs: add CONFIG_BUFFER_HEAD

[syzbot] [xfs?] KASAN: slab-out-of-bounds Read in xlog_pack_data
 2023-07-20 22:35 UTC  (3+ messages)

Backporting of series xfs/iomap: fix data corruption due to stale cached iomap
 2023-07-20 18:38 UTC  (8+ messages)

[GIT PULL] iomap: bug fixes for 6.5
 2023-07-20 18:01 UTC  (2+ messages)

[GIT PULL] xfs: ubsan fixes for 6.5-rc2
 2023-07-20 18:01 UTC  (2+ messages)

[PATCH V2 00/23] Metadump v2
 2023-07-20 17:22 UTC  (5+ messages)
` [PATCH V2 04/23] metadump: Define and use struct metadump

[PATCHSET v3 0/6] Improve async iomap DIO performance
 2023-07-20 16:27 UTC  (16+ messages)
` [PATCH 1/6] iomap: cleanup up iomap_dio_bio_end_io()
` [PATCH 2/6] iomap: add IOMAP_DIO_INLINE_COMP
` [PATCH 3/6] iomap: treat a write through cache the same as FUA
` [PATCH 4/6] fs: add IOCB flags related to passing back dio completions
` [PATCH 6/6] iomap: support IOCB_DIO_DEFER

[PATCH] fs/xfs: Fix typos in comments
 2023-07-20 15:51 UTC 

[PATCHSET 0/2] fstests: testing improvements
 2023-07-20 14:34 UTC  (11+ messages)
` [PATCH 1/2] check: add a -smoketest option
` [PATCH 2/2] check: generate gcov code coverage reports at the end of each section

RFC: allow building a kernel without buffer_heads
 2023-07-20 12:16 UTC  (8+ messages)
` [PATCH 16/17] block: use iomap for writes to block devices

[ANNOUNCE] xfsprogs-6.4.0 released
 2023-07-20 12:10 UTC  (3+ messages)

[PATCH v12 0/2] mm, pmem, xfs: Introduce MF_MEM_REMOVE for unbind
 2023-07-20  1:50 UTC  (5+ messages)
` [PATCH v12 2/2] "

[PATCHSET 0/1] fstests: random fixes for v2023.07.09
 2023-07-20  1:39 UTC  (3+ messages)
` [PATCH 1/1] generic/558: avoid forkbombs on filesystems with many free inodes

[PATCH] xfs: add a couple more tests for ascii-ci problems
 2023-07-20  1:18 UTC  (5+ messages)
` [PATCH v2] "

Question on slow fallocate
 2023-07-19 22:23 UTC  (12+ messages)

[PATCHSET v2 0/5] Improve async iomap DIO performance
 2023-07-19 19:55 UTC  (4+ messages)
` [PATCH 5/5] iomap: support IOCB_DIO_DEFER


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