linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-03-19 11:57:05 to 2020-03-23 20:24:53 UTC [more...]

[PATCH v10 00/25] Change readahead API
 2020-03-23 20:22 UTC  (16+ messages)
` [PATCH v10 03/25] mm: Ignore return value of ->readpages
` [PATCH v10 04/25] mm: Move readahead nr_pages check into read_pages
` [PATCH v10 06/25] mm: Use readahead_control to pass arguments
` [PATCH v10 07/25] mm: Rename various 'offset' parameters to 'index'
` [PATCH v10 08/25] mm: rename readahead loop variable to 'i'
` [PATCH v10 09/25] mm: Remove 'page_offset' from readahead loop
` [PATCH v10 10/25] mm: Put readahead pages in cache earlier
` [PATCH v10 13/25] mm: Add page_cache_readahead_unbounded
` [PATCH v10 14/25] mm: Document why we don't set PageReadahead
` [PATCH v10 15/25] mm: Use memalloc_nofs_save in readahead path
` [PATCH v10 16/25] fs: Convert mpage_readpages to mpage_readahead
` [PATCH v10 17/25] btrfs: Convert from readpages to readahead
` [PATCH v10 20/25] ext4: "
` [PATCH v10 22/25] f2fs: "
` [PATCH v10 24/25] fuse: "

[PATCH RESEND v2 0/3] btrfs-progs: fix clone from wrong subvolume
 2020-03-23 20:01 UTC  (3+ messages)
` [PATCH RESEND v2 3/3] btrfs-progs: tests: add test for receiving clone from duplicate subvolume

[PATCH] btrfs-progs: qgroup-verify: Remove duplicated message in report_qgroups
 2020-03-23 19:39 UTC  (2+ messages)

[PATCH] btrfs-progs: check/lowmem: Fix a false alert caused by hole beyond isize check
 2020-03-23 19:38 UTC  (2+ messages)

[PATCH] Btrfs: fix removal of raid[56|1c34} incompat flags after removing block group
 2020-03-23 19:28 UTC  (6+ messages)

[PATCH v2] btrfs: sysfs: Use scnprintf() instead of snprintf()
 2020-03-23 17:10 UTC  (2+ messages)

[PATCH 00/40] btrfs: qgroup: Use backref cache based backref walk for commit roots
 2020-03-23 12:51 UTC  (42+ messages)
` [PATCH 01/40] btrfs: backref: Introduce the skeleton of btrfs_backref_iter
` [PATCH 02/40] btrfs: backref: Implement btrfs_backref_iter_next()
` [PATCH 03/40] btrfs: relocation: Use btrfs_backref_iter infrastructure
` [PATCH 04/40] btrfs: relocation: Rename mark_block_processed() and __mark_block_processed()
` [PATCH 05/40] btrfs: relocation: Add backref_cache::pending_edge and backref_cache::useless_node members
` [PATCH 06/40] btrfs: relocation: Add backref_cache::fs_info member
` [PATCH 07/40] btrfs: relocation: Make reloc root search specific for relocation backref cache
` [PATCH 08/40] btrfs: relocation: Refactor direct tree backref processing into its own function
` [PATCH 09/40] btrfs: relocation: Refactor indirect "
` [PATCH 10/40] btrfs: relocation: Use wrapper to replace open-coded edge linking
` [PATCH 11/40] btrfs: relocation: Specify essential members for alloc_backref_node()
` [PATCH 12/40] btrfs: relocation: Remove the open-coded goto loop for breadth-first search
` [PATCH 13/40] btrfs: relocation: Refactor the finishing part of upper linkage into finish_upper_links()
` [PATCH 14/40] btrfs: relocation: Refactor the useless nodes handling into its own function
` [PATCH 15/40] btrfs: relocation: Add btrfs_ prefix for backref_node/edge/cache
` [PATCH 16/40] btrfs: Move btrfs_backref_(node|edge|cache) structures to backref.h
` [PATCH 17/40] btrfs: Rename tree_entry to simple_node and export it
` [PATCH 18/40] btrfs: Rename backref_cache_init() to btrfs_backref_cache_init() and move it to backref.c
` [PATCH 19/40] btrfs: Rename alloc_backref_node() to btrfs_backref_alloc_node() and move it backref.c
` [PATCH 20/40] btrfs: Rename alloc_backref_edge() to btrfs_backref_alloc_edge() "
` [PATCH 21/40] btrfs: Rename link_backref_edge() to btrfs_backref_link_edge() and move it backref.h
` [PATCH 22/40] btrfs: Rename free_backref_(node|edge) to btrfs_backref_free_(node|edge) and move them to backref.h
` [PATCH 23/40] btrfs: Rename drop_backref_node() to btrfs_backref_drop_node() and move its needed facilities "
` [PATCH 24/40] btrfs: Rename remove_backref_node() to btrfs_backref_cleanup_node() and move it to backref.c
` [PATCH 25/40] btrfs: Rename backref_cache_cleanup() to btrfs_backref_release_cache() "
` [PATCH 26/40] btrfs: Rename backref_tree_panic() to btrfs_backref_panic(), "
` [PATCH 27/40] btrfs: Rename should_ignore_root() to btrfs_should_ignore_reloc_root() and export it
` [PATCH 28/40] btrfs: relocation: Open-code read_fs_root() for handle_indirect_tree_backref()
` [PATCH 29/40] btrfs: Rename handle_one_tree_block() to btrfs_backref_add_tree_node() and move it to backref.c
` [PATCH 30/40] btrfs: Rename finish_upper_links() to btrfs_backref_finish_upper_links() "
` [PATCH 31/40] btrfs: relocation: Move error handling of build_backref_tree() "
` [PATCH 32/40] btrfs: relocation: Use btrfs_find_all_leaves() to locate parent tree leaves of a data extent
` [PATCH 33/40] btrfs: backref: Only ignore reloc roots for indrect backref resolve if the backref cache is for reloction purpose
` [PATCH 34/40] btrfs: qgroup: Introduce qgroup backref cache
` [PATCH 35/40] btrfs: qgroup: Introduce qgroup_backref_cache_build() function
` [PATCH 36/40] btrfs: qgroup: Introduce a function to iterate through backref_cache to find all parents for specified node
` [PATCH 37/40] btrfs: qgroup: Introduce helpers to get needed tree block info
` [PATCH 38/40] btrfs: qgroup: Introduce verification for function to ensure old roots ulist matches btrfs_find_all_roots() result
` [PATCH 39/40] btrfs: qgroup: Introduce a new function to get old_roots ulist using backref cache
` [PATCH 40/40] btrfs: qgroup: Use backref cache to speed up old_roots search

[PATCH v9 00/25] Change readahead API
 2020-03-23  3:55 UTC  (46+ messages)
` [PATCH v9 01/25] mm: Move readahead prototypes from mm.h
` [PATCH v9 02/25] mm: Return void from various readahead functions
` [PATCH v9 03/25] mm: Ignore return value of ->readpages
` [PATCH v9 04/25] mm: Move readahead nr_pages check into read_pages
` [PATCH v9 05/25] mm: Add new readahead_control API
` [PATCH v9 06/25] mm: Use readahead_control to pass arguments
` [PATCH v9 07/25] mm: Rename various 'offset' parameters to 'index'
` [PATCH v9 08/25] mm: rename readahead loop variable to 'i'
` [PATCH v9 09/25] mm: Remove 'page_offset' from readahead loop
` [PATCH v9 10/25] mm: Put readahead pages in cache earlier
` [PATCH v9 11/25] mm: Add readahead address space operation
` [PATCH v9 12/25] mm: Move end_index check out of readahead loop
` [PATCH v9 13/25] mm: Add page_cache_readahead_unbounded
` [PATCH v9 14/25] mm: Document why we don't set PageReadahead
` [PATCH v9 15/25] mm: Use memalloc_nofs_save in readahead path
` [PATCH v9 16/25] fs: Convert mpage_readpages to mpage_readahead
` [PATCH v9 17/25] btrfs: Convert from readpages to readahead
` [PATCH v9 18/25] erofs: Convert uncompressed files "
  ` [f2fs-dev] "
` [PATCH v9 19/25] erofs: Convert compressed "
  ` [f2fs-dev] "
` [PATCH v9 20/25] ext4: Convert "
` [PATCH v9 21/25] ext4: Pass the inode to ext4_mpage_readpages
` [PATCH v9 22/25] f2fs: Convert from readpages to readahead
  ` [f2fs-dev] "
` [PATCH v9 23/25] f2fs: Pass the inode to f2fs_mpage_readpages
  ` [f2fs-dev] "
` [PATCH v9 24/25] fuse: Convert from readpages to readahead
` [PATCH v9 25/25] iomap: "

Question: how understand the raid profile of a btrfs filesystem
 2020-03-22 23:49 UTC  (9+ messages)

[GIT PULL] Btrfs fixes for 5.6-rc7
 2020-03-22 18:40 UTC  (2+ messages)

Unmountable partition
 2020-03-21 22:06 UTC 

5.4.20: cannot mount device that blipped off the bus: duplicate device fsid:devid for
 2020-03-21 21:25 UTC  (2+ messages)

[PATCH] btrfs: sysfs: Use scnprintf() for avoiding potential buffer overflow
 2020-03-20 22:45 UTC  (5+ messages)

[PATCH 00/15] btrfs: read repair/direct I/O improvements
 2020-03-20 21:29 UTC  (14+ messages)
` [PATCH 08/15] btrfs: move btrfs_dio_private to inode.c
` [PATCH 15/15] btrfs: unify buffered and direct I/O read repair

[PATCH 0/5][v2] Relocation and backref resolution fixes
 2020-03-20 19:39 UTC  (7+ messages)
` [PATCH 1/5] btrfs: reorder reservation before reloc root selection
` [PATCH 2/5] btrfs: restart relocate_tree_blocks properly
` [PATCH 3/5] btrfs: track reloc roots based on their commit_root bytenr
` [PATCH 4/5] btrfs: do not resolve backrefs for roots that are being deleted
` [PATCH 5/5] btrfs: restart snapshot delete if we have to end the transaction

[PATCH v2] btrfs-progs: Remove support for BTRFS_SUBVOL_CREATE_ASYNC
 2020-03-20 19:23 UTC  (2+ messages)

Question: how understand the raid profile of a btrfs filesystem
 2020-03-20 17:58 UTC 

[PATCH v2] iomap: return partial I/O count on error in iomap_dio_bio_actor
 2020-03-20 15:35 UTC  (4+ messages)

[PATCHv2 0/2] btrfs-progs: Auto resize fs after device replace
 2020-03-20  3:32 UTC  (3+ messages)
` [PATCHv2 1/2] btrfs-progs: Move resize into functionaly into utils.c
` [PATCHv2 2/2] btrfs-progs: replace: New argument to resize the fs after replace

How do damaged root trees happen and how to protect against power cut?
 2020-03-20  0:46 UTC  (3+ messages)

[PATCH RFC V3] new ioctl BTRFS_IOC_GET_CHUNK_INFO
 2020-03-19 21:09 UTC  (4+ messages)
` [PATCH rfc v3] New "

[PATCH RFC V2] new ioctl BTRFS_IOC_GET_CHUNK_INFO
 2020-03-19 19:54 UTC  (6+ messages)
` [PATCH RFC v2] New "

[PATCH RFC 00/39] btrfs: qgroup: Use backref cache based backref walk for commit roots
 2020-03-19 17:26 UTC  (30+ messages)
` [PATCH RFC 01/39] btrfs: backref: Introduce the skeleton of btrfs_backref_iter
` [PATCH RFC 02/39] btrfs: backref: Implement btrfs_backref_iter_next()
` [PATCH RFC 03/39] btrfs: relocation: Use btrfs_backref_iter infrastructure
` [PATCH RFC 04/39] btrfs: relocation: Rename mark_block_processed() and __mark_block_processed()
` [PATCH RFC 05/39] btrfs: relocation: Add backref_cache::pending_edge and backref_cache::useless_node members
` [PATCH RFC 06/39] btrfs: relocation: Add backref_cache::fs_info member
` [PATCH RFC 07/39] btrfs: relocation: Make reloc root search specific for relocation backref cache
` [PATCH RFC 08/39] btrfs: relocation: Refactor direct tree backref processing into its own function
` [PATCH RFC 09/39] btrfs: relocation: Refactor indirect "
` [PATCH RFC 12/39] btrfs: relocation: Remove the open-coded goto loop for breadth-first search
` [PATCH RFC 13/39] btrfs: relocation: Refactor the finishing part of upper linkage into finish_upper_links()
` [PATCH RFC 14/39] btrfs: relocation: Refactor the useless nodes handling into its own function
` [PATCH RFC 15/39] btrfs: Move backref node/edge/cache structure to backref.h

[PATCH 0/2] uboot: fs/btrfs: Fix read error on LZO compressed extents
 2020-03-19 16:28 UTC  (7+ messages)
` [PATCH 1/2] uboot: fs/btrfs: Use LZO_LEN to replace immediate number
` [PATCH 2/2] uboot: fs/btrfs: Fix LZO false decompression error caused by pending zero

[PATCH] btrfs: use nofs allocations for running delayed items
 2020-03-19 16:25 UTC  (4+ messages)

[PATCH] btrfs-progs: restore: Avoid SYMLINK messages
 2020-03-19 15:10 UTC 

[PATCHv2] progs: mkfs-tests: Skip test if truncate failed with EFBIG
 2020-03-19 15:03 UTC  (6+ messages)

[RFC] new ioctl BTRFS_IOC_GET_CHUNK_INFO
 2020-03-19 14:42 UTC  (3+ messages)
` [PATCH] New "

[PATCH 0/2] uboot: fs/btrfs: Fix read error on LZO compressed extents
 2020-03-19 12:33 UTC  (3+ messages)
` [PATCH 1/2] uboot: fs/btrfs: Use LZO_LEN to replace immediate number
` [PATCH 2/2] uboot: fs/btrfs: Fix LZO false decompression error caused by pending zero

[PATCH v8 00/25] Change readahead API
 2020-03-19 11:57 UTC  (3+ 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).