linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-12-01 05:18:26 to 2021-12-07 01:17:24 UTC [more...]

[PATCH v2 0/5] btrfs: qgroup: address the performance penalty for subvolume dropping
 2021-12-07  1:16 UTC  (6+ messages)
` [PATCH v2 1/5] btrfs: sysfs: introduce qgroup global attribute groups
` [PATCH v2 2/5] btrfs: introduce BTRFS_QGROUP_STATUS_FLAGS_MASK for later expansion
` [PATCH v2 3/5] btrfs: introduce BTRFS_QGROUP_RUNTIME_FLAG_CANCEL_RESCAN
` [PATCH v2 4/5] btrfs: introduce BTRFS_QGROUP_RUNTIME_FLAG_NO_ACCOUNTING to skip qgroup accounting
` [PATCH v2 5/5] btrfs: skip subtree scan if it's too high to avoid low stall in btrfs_commit_transaction()

[PATCH] btrfs: free device if we fail to open it
 2021-12-06 22:23 UTC  (8+ messages)

[PATCH 1/2] btrfs: update SCRUB_MAX_PAGES_PER_BLOCK
 2021-12-06 21:14 UTC  (3+ messages)
` [PATCH 2/2] btrfs: merge SCRUB_PAGES_PER_RD_BIO and SCRUB_PAGES_PER_WR_BIO

[PATCH 00/18] Truncate cleanups and preparation work
 2021-12-06 21:06 UTC  (22+ messages)
` [PATCH 01/18] btrfs: add an inode-item.h
` [PATCH 02/18] btrfs: move btrfs_truncate_inode_items to inode-item.c
` [PATCH 03/18] btrfs: move extent locking outside of btrfs_truncate_inode_items
` [PATCH 04/18] btrfs: remove free space cache inode check in btrfs_truncate_inode_items
` [PATCH 05/18] btrfs: move btrfs_kill_delayed_inode_items into evict
` [PATCH 06/18] btrfs: remove found_extent from btrfs_truncate_inode_items
` [PATCH 07/18] btrfs: add btrfs_truncate_control struct
` [PATCH 08/18] btrfs: only update i_size in truncate paths that care
` [PATCH 09/18] btrfs: only call inode_sub_bytes "
` [PATCH 10/18] btrfs: control extent reference updates with a control flag for truncate
` [PATCH 11/18] btrfs: use a flag to control when to clear the file extent range
` [PATCH 12/18] btrfs: pass the ino via btrfs_truncate_control
` [PATCH 13/18] btrfs: add inode to btrfs_truncate_control
` [PATCH 14/18] btrfs: convert BUG_ON() in btrfs_truncate_inode_items to ASSERT
` [PATCH 15/18] btrfs: convert BUG() for pending_del_nr into an ASSERT
` [PATCH 16/18] btrfs: combine extra if statements in btrfs_truncate_inode_items
` [PATCH 17/18] btrfs: make should_throttle loop local "
` [PATCH 18/18] btrfs: do not check -EAGAIN when truncating inodes in the log root

[PATCH v2 0/2] Free space tree space reservation fixes
 2021-12-06 19:54 UTC  (8+ messages)
` [PATCH v2 1/2] btrfs: include the free space tree in the global rsv minimum calculation
` [PATCH v2 2/2] btrfs: reserve extra space for the free space tree

[PATCH] fstests: UDEV_SETTLE_PROG before dmsetup create
 2021-12-06 19:28 UTC  (6+ messages)

[PATCH] fstests: btrfs/011 increase the runtime for replace cancel
 2021-12-06 18:35 UTC  (2+ messages)

[PATCH 0/6] btrfs: optimize btree insertions and some cleanups
 2021-12-06 18:29 UTC  (9+ messages)
` [PATCH 1/6] btrfs: allow generic_bin_search() to take low boundary as an argument
` [PATCH 2/6] btrfs: try to unlock parent nodes earlier when inserting a key
` [PATCH 3/6] btrfs: remove useless condition check before splitting leaf
` [PATCH 4/6] btrfs: move leaf search logic out of btrfs_search_slot()
` [PATCH 5/6] btrfs: remove BUG_ON() after splitting leaf
` [PATCH 6/6] btrfs: remove stale comment about locking at btrfs_search_slot()

[PATCH] btrfs: zoned: clear data relocation bg on zone finish
 2021-12-06 17:59 UTC  (3+ messages)

[PATCH] btrfs: send: fix a failure when looking for data backrefs after relocation
 2021-12-06 17:52 UTC  (4+ messages)

[PATCH] btrfs: free exchange changeset on failures
 2021-12-06 17:48 UTC  (3+ messages)

[PATCH] btrfs: zoned: free zone_cache when freeing zone_info
 2021-12-06 17:32 UTC  (4+ messages)

[REGRESSION] 5-10% increase in IO latencies with nohz balance patch
 2021-12-06  9:48 UTC  (9+ messages)

[PATCH v2 00/17] btrfs: split bio at btrfs_map_bio() time
 2021-12-06  2:29 UTC  (18+ messages)
` [PATCH v2 01/17] btrfs: update an stale comment on btrfs_submit_bio_hook()
` [PATCH v2 02/17] btrfs: save bio::bi_iter into btrfs_bio::iter before any endio
` [PATCH v2 03/17] btrfs: use correct bio size for error message in btrfs_end_dio_bio()
` [PATCH v2 04/17] btrfs: refactor btrfs_map_bio()
` [PATCH v2 05/17] btrfs: move btrfs_bio_wq_end_io() calls into submit_stripe_bio()
` [PATCH v2 06/17] btrfs: replace btrfs_dio_private::refs with btrfs_dio_private::pending_bytes
` [PATCH v2 07/17] btrfs: introduce btrfs_bio_split() helper
` [PATCH v2 08/17] btrfs: make data buffered read path to handle split bio properly
` [PATCH v2 09/17] btrfs: make data buffered write endio function to be split bio compatible
` [PATCH v2 10/17] btrfs: make metadata write endio functions "
` [PATCH v2 11/17] btrfs: make dec_and_test_compressed_bio() "
` [PATCH v2 12/17] btrfs: return proper mapped length for RAID56 profiles in __btrfs_map_block()
` [PATCH v2 13/17] btrfs: allow btrfs_map_bio() to split bio according to chunk stripe boundaries
` [PATCH v2 14/17] btrfs: remove buffered IO stripe boundary calculation
` [PATCH v2 15/17] btrfs: remove stripe boundary calculation for compressed IO
` [PATCH v2 16/17] btrfs: remove the stripe boundary calculation for direct IO
` [PATCH v2 17/17] btrfs: unexport btrfs_get_io_geometry()

[PATCH v3] btrfs-progs: filesystem: du: skip file that permission denied
 2021-12-05 15:13 UTC  (3+ messages)

Balance loop on "device delete missing"? (RAID 1, Linux 5.15, "found 1 extents, stage: update data pointers")
 2021-12-05 11:54 UTC  (5+ messages)

[PATCH v6 0/4] btrfs: sysfs: set / query btrfs chunk size
 2021-12-03 22:04 UTC  (5+ messages)
` [PATCH v6 1/4] btrfs: store chunk size in space-info struct
` [PATCH v6 2/4] btrfs: expose chunk size in sysfs
` [PATCH v6 3/4] btrfs: add force_chunk_alloc sysfs entry to force allocation
` [PATCH v6 4/4] btrfs: increase metadata alloc size to 5GB for volumes > 50GB

[PATCH v7] btrfs: Add new test for setting the chunk size
 2021-12-03 21:56 UTC  (3+ messages)

[PATCH v8] btrfs: Add new test for setting the chunk size
 2021-12-03 21:55 UTC 

[PATCH v2 0/4] Avoid live-lock in fault-in+uaccess loops with sub-page faults
 2021-12-03 19:51 UTC  (12+ messages)
` [PATCH v2 1/4] mm: Introduce a 'min_size' argument to fault_in_*()
` [PATCH v2 2/4] mm: Probe for sub-page faults in fault_in_*()
` [PATCH v2 3/4] arm64: Add support for user sub-page fault probing
` [PATCH v2 4/4] btrfs: Avoid live-lock in search_ioctl() on hardware with sub-page faults

Connection lost during BTRFS move + resize
 2021-12-03 18:47 UTC  (7+ messages)

kworker/u32:5+btrfs-delalloc using 100% CPU
 2021-12-03 18:05 UTC  (5+ messages)

Re-using identical COW entries ?
 2021-12-03 17:38 UTC 

Question: Cryptographically Sealed Subvolumes?
 2021-12-03  7:15 UTC 

[PATCH] btrfs: zoned: convert comment to kernel-doc format
 2021-12-03  6:48 UTC 

Unable to Mount Btrfs Partition used on Both Funtoo and Windows
 2021-12-03  0:35 UTC  (3+ messages)

Unable to Mount Btrfs Partition used on Both Funtoo and Windows
 2021-12-02 22:50 UTC  (3+ messages)

Unable to Mount Btrfs Partition used on Both Funtoo and Windows
 2021-12-02 22:22 UTC 

[PATCH 1/2] btrfs: include the free space tree in the global rsv minimum calculation
 2021-12-02 15:46 UTC  (5+ messages)
` [PATCH 2/2] btrfs: reserve extra space for the free space tree

[PATCH] btrfs: test balance and send running in parallel
 2021-12-02 10:19 UTC  (2+ messages)
` [PATCH v3] "

[PATCH v2 00/22] btrfs-progs: extent tree v2 support, global roots
 2021-12-01 18:17 UTC  (23+ messages)
` [PATCH v2 01/22] btrfs-progs: common: allow users to select extent-tree-v2 option
` [PATCH v2 02/22] btrfs-progs: add definitions for the block group tree
` [PATCH v2 03/22] btrfs-progs: add on disk pointers to global tree ids
` [PATCH v2 04/22] btrfs-progs: add support for loading the block group root
` [PATCH v2 05/22] btrfs-progs: add print support for the block group tree
` [PATCH v2 06/22] btrfs-progs: mkfs: use the btrfs_block_group_root helper
` [PATCH v2 07/22] btrfs-progs: check-lowmem: "
` [PATCH v2 08/22] btrfs-progs: handle no bg item in extent tree for free space tree
` [PATCH v2 09/22] btrfs-progs: mkfs: add support for the block group tree
` [PATCH v2 10/22] btrfs-progs: check: add block group tree support
` [PATCH v2 11/22] btrfs-progs: qgroup-verify: scan extents based on block groups
` [PATCH v2 12/22] btrfs-progs: check: make free space tree validation extent tree v2 aware
` [PATCH v2 13/22] btrfs-progs: check: add helper to reinit the root based on a key
` [PATCH v2 14/22] btrfs-progs: check: handle the block group tree properly
` [PATCH v2 15/22] btrfs-progs: load the number of global roots into the fs_info
` [PATCH v2 16/22] btrfs-progs: handle the per-block group global root id
` [PATCH v2 17/22] btrfs-progs: add a btrfs_delete_and_free_root helper
` [PATCH v2 18/22] btrfs-progs: make btrfs_clear_free_space_tree extent tree v2 aware
` [PATCH v2 19/22] btrfs-progs: make btrfs_create_tree take a key for the root key
` [PATCH v2 20/22] btrfs-progs: mkfs: set chunk_item_objectid properly for extent tree v2
` [PATCH v2 21/22] btrfs-progs: mkfs: create the global root's
` [PATCH v2 22/22] btrfs-progs: check: don't do the root item check for extent tree v2

[PATCH v3 0/8] btrfs-progs: extent tree v2 global root support prep work
 2021-12-01 18:15 UTC  (9+ messages)
` [PATCH v3 1/8] btrfs-progs: stop accessing ->extent_root directly
` [PATCH v3 2/8] btrfs-progs: stop accessing ->free_space_root directly
` [PATCH v3 3/8] btrfs-progs: track csum, extent, and free space trees in a rb tree
` [PATCH v3 4/8] btrfs-progs: check: make reinit work per found root item
` [PATCH v3 5/8] btrfs-progs: check: check the global roots for uptodate root nodes
` [PATCH v3 6/8] btrfs-progs: check: check all of the csum roots
` [PATCH v3 7/8] btrfs-progs: check: fill csum root from all extent roots
` [PATCH v3 8/8] btrfs-progs: common: search all extent roots for marking used space

[PATCH v2] fs/btrfs: Make extent item iteration to handle gaps
 2021-12-01 17:10 UTC  (2+ messages)

[PATCH v2 0/2] provide fsid in sysfs devinfo
 2021-12-01 16:56 UTC  (5+ messages)
` [PATCH v2 2/2] btrfs: sysfs add devinfo/fsid to retrieve fsid from the device

[PATCH] btrfs: replace the BUG_ON() in btrfs_del_root_ref() with proper error handling
 2021-12-01 16:48 UTC  (2+ messages)

[PATCH 0/2] Free space tree space reservation fixes
 2021-12-01 16:45 UTC 

[PATCH 00/17] btrfs: split bio at btrfs_map_bio() time
 2021-12-01 11:52 UTC  (17+ messages)
` [PATCH 02/17] btrfs: save bio::bi_iter into btrfs_bio::iter before submitting
` [PATCH 06/17] btrfs: replace btrfs_dio_private::refs with btrfs_dio_private::pending_bytes
` [PATCH 07/17] btrfs: introduce btrfs_bio_split() helper
` [PATCH 08/17] btrfs: make data buffered read path to handle split bio properly
` [PATCH 09/17] btrfs: make data buffered write endio function to be split bio compatible
` [PATCH 10/17] btrfs: make metadata write endio functions "
` [PATCH 11/17] btrfs: make dec_and_test_compressed_bio() "
` [PATCH 12/17] btrfs: return proper mapped length for RAID56 profiles in __btrfs_map_block()
` [PATCH 13/17] btrfs: allow btrfs_map_bio() to split bio according to chunk stripe boundaries
` [PATCH 14/17] btrfs: remove buffered IO stripe boundary calculation
` [PATCH 15/17] btrfs: remove stripe boundary calculation for compressed IO
` [PATCH 16/17] btrfs: remove the stripe boundary calculation for direct IO
` [PATCH 17/17] btrfs: unexport btrfs_get_io_geometry()


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