linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-03-23 20:23:33 to 2020-03-28 21:31:31 UTC [more...]

Q: what exactly does SSD mode still do?
 2020-03-28 21:31 UTC  (5+ messages)

btrfs-transacti hangs system for several seconds every few minutes
 2020-03-28 21:20 UTC  (2+ messages)

[PATCH v7 0/5] readmirror feature (sysfs and in-memory only approach; with new read_policy device)
 2020-03-28  5:48 UTC  (2+ messages)

[PATCH v2 00/16] btrfs-progs: global verbose and quiet option
 2020-03-28  5:45 UTC  (4+ messages)

Unable to open files - Bus Error
 2020-03-28  5:43 UTC 

[PATCH] btrfs-progs: lots of typo fixes (codespell)
 2020-03-27 20:36 UTC 

[PATCH][next] btrfs: inode: Fix uninitialized variable bug
 2020-03-27 20:01 UTC 

[PATCH 0/9 v7] btrfs direct-io using iomap
 2020-03-27 16:13 UTC  (15+ messages)
` [PATCH 1/9] fs: Export generic_file_buffered_read()
` [PATCH 2/9] iomap: add a filesystem hook for direct I/O bio submission
` [PATCH 3/9] iomap: Remove lockdep_assert_held()
` [PATCH 4/9] btrfs: Switch to iomap_dio_rw() for dio
` [PATCH 5/9] btrfs: Use ->iomap_end() instead of btrfs_dio_data
` [PATCH 6/9] fs: Remove dio_end_io()
` [PATCH 7/9] btrfs: remove BTRFS_INODE_READDIO_NEED_LOCK
` [PATCH 8/9] btrfs: btrfs: split btrfs_direct_IO
` [PATCH 9/9] btrfs: unlock extents in ->iomap_end() for DIO reads

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

[PATCH 0/6] btrfs-progs: Fixes for valgrind errors during fsck-tests
 2020-03-27 15:27 UTC  (10+ messages)
` [PATCH 1/6] btrfs-progs: tests/common: Don't call INSTRUMENT on mount command
` [PATCH 2/6] btrfs-progs: check/original: Fix uninitialized stack memory access for deal_root_from_list()
` [PATCH 3/6] btrfs-progs: check/original: Fix uninitialized memory for newly allocated data_backref
` [PATCH 4/6] btrfs-progs: check/original: Fix uninitialized return value from btrfs_write_dirty_block_groups()
` [PATCH 5/6] btrfs-progs: check/original: Fix uninitialized extent buffer contents
` [PATCH 6/6] btrfs-progs: extent-tree: Fix wrong post order rb tree cleanup for block groups

[PATCH] btrfs-progs: check: typo in an error message: "boudnary"
 2020-03-27 15:17 UTC  (3+ messages)

Kernels 4.15..5.0.3: "WARNING: CPU: 2 PID: 4150 at fs/fs-writeback.c:2363 __writeback_inodes_sb_nr+0xa9/0xc0"
 2020-03-27  5:59 UTC  (5+ messages)
` Kernels 4.15..5.5: "
      ` Kernel 5.5.8 : "

[PATCH 1/2] btrfs-progs: fix fsck-test/037 skip corrupt FREE_SPACE_BITMAP
 2020-03-27  4:15 UTC  (4+ messages)
` [PATCH 2/2] btrfs-progs: fix misc-test/029 provide device for mount

[PATCH AUTOSEL 5.5 22/28] btrfs: fix removal of raid[56|1c34} incompat flags after removing block group
 2020-03-26 23:23 UTC 

[PATCH 0/5] Fix up some stupid delayed ref flushing behaviors
 2020-03-26 19:58 UTC  (5+ messages)

Q: btrfs and device readahead
 2020-03-26 18:22 UTC 

btrfs-progs: RAID1C3/C4 missing some info in btrfs_raid_array
 2020-03-26 17:36 UTC  (5+ messages)

[RFC][PATCH] btrfs-progs: add warning for mixed prfofiles filesystem
 2020-03-26 17:28 UTC  (7+ messages)
` [PATCH 1/4] btrfs-progs: Add missing fields to btrfs_raid_array[] for raid1c[34]
` [PATCH 2/4] btrfs-progs: Add BTRFS_EXTENDED_PROFILE_MASK mask
` [PATCH 3/4] btrfs-progs: Add btrfs_check_for_mixed_profiles_by_* function
` [PATCH 4/4] btrfs-progs: Add mixed profiles check to 'btrfs fi us'

[PATCH] btrfs-progs: restore: Avoid SYMLINK messages
 2020-03-26 17:25 UTC  (2+ messages)

[PATCH RFC] btrfs: send: Emit all xattr of an inode if the uid/gid changed
 2020-03-26 17:14 UTC  (5+ messages)

[PATCH v10 00/25] Change readahead API
 2020-03-26 16:53 UTC  (33+ messages)
` [PATCH v10 01/25] mm: Move readahead prototypes from mm.h
` [PATCH v10 02/25] mm: Return void from various readahead functions
` [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 05/25] mm: Add new readahead_control API
` [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 11/25] mm: Add readahead address space operation
` [PATCH v10 12/25] mm: Move end_index check out of readahead loop
` [PATCH v10 13/25] mm: Add page_cache_readahead_unbounded
` [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 18/25] erofs: Convert uncompressed files "
` [PATCH v10 19/25] erofs: Convert compressed "
` [PATCH v10 20/25] ext4: Convert "
` [PATCH v10 21/25] ext4: Pass the inode to ext4_mpage_readpages
` [PATCH v10 22/25] f2fs: Convert from readpages to readahead
` [PATCH v10 23/25] f2fs: Pass the inode to f2fs_mpage_readpages
` [PATCH v10 24/25] fuse: Convert from readpages to readahead
` [PATCH v10 25/25] iomap: "

Request about "Page cache invalidation failure on direct I/O."
 2020-03-26 13:53 UTC  (3+ messages)

FIDEDUPERANGE woes may continue (or unrelated issue?)
 2020-03-26 13:23 UTC  (8+ messages)

[PATCH U-BOOT v2 0/3] fs: btrfs: Fix false LZO decompression error due to missing page boundary check
 2020-03-26  9:03 UTC  (7+ messages)
` [PATCH U-BOOT v2 1/3] fs: btrfs: Use LZO_LEN to replace immediate number
` [PATCH U-BOOT v2 2/3] fs: btrfs: Reject fs with sector size other than PAGE_SIZE
` [PATCH U-BOOT v2 3/3] fs: btrfs: Fix LZO false decompression error caused by pending zero

[PATCH v2] btrfs: Only require sector size alignment for parent eb bytenr
 2020-03-26  5:54 UTC 

5.4.20: cannot mount device that blipped off the bus: duplicate device fsid:devid for
 2020-03-26  4:26 UTC  (7+ messages)

Question: how understand the raid profile of a btrfs filesystem
 2020-03-26  3:10 UTC  (18+ messages)

[RFC] btrfs-progs: use the new ioctl BTRFS_IOC_GET_CHUNK_INFO
 2020-03-25 20:12 UTC  (2+ messages)

[PATCH] btrfs-progs: add RAID5/6 support to btrfs fi us
 2020-03-25 20:12 UTC  (2+ messages)

[PATCH 0/5][v2] Deal with a few ENOSPC corner cases
 2020-03-25 18:33 UTC  (4+ messages)

[PATCH RFC 00/39] btrfs: qgroup: Use backref cache based backref walk for commit roots
 2020-03-25 18:30 UTC  (2+ messages)

[PATCH 0/4] Relocation and backref resolution fixes
 2020-03-25 14:01 UTC  (2+ messages)

[PATCH] btrfs: use nofs allocations for running delayed items
 2020-03-25 13:58 UTC  (2+ messages)

[PATCH 0/2] uboot: fs/btrfs: Fix read error on LZO compressed extents
 2020-03-25 11:32 UTC  (3+ messages)
` [PATCH 2/2] uboot: fs/btrfs: Fix LZO false decompression error caused by pending zero

[PATCH] btrfs-progs: match the max chunk size to the kernel
 2020-03-25  8:23 UTC  (4+ messages)

[PATCH 0/2] uboot: fs/btrfs: Fix read error on LZO compressed extents
 2020-03-25  7:58 UTC  (9+ messages)
` [PATCH 2/2] uboot: fs/btrfs: Fix LZO false decompression error caused by pending zero

extent generation_id
 2020-03-25  0:28 UTC  (3+ messages)

Business Partnership
 2020-03-24 18:58 UTC 

[PATCH] btrfs-progs: check/lowmem: Fix access on uninitialized memory
 2020-03-24 18:08 UTC  (2+ messages)

[PATCH] btrfs-progs: check/lowmem: Fix a false alert caused by hole beyond isize check
 2020-03-24 16:28 UTC  (5+ messages)

[PATCH] btrfs: drop logs when we've aborted a transaction
 2020-03-24 15:42 UTC  (4+ messages)

How do damaged root trees happen and how to protect against power cut?
 2020-03-24  7:54 UTC  (3+ messages)
    ` Fwd: "

[PATCH] Btrfs: fix removal of raid[56|1c34} incompat flags after removing block group
 2020-03-24  7:03 UTC  (6+ 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).