aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/btrfs/extent-tree.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-03-18btrfs: harden block_group::bg_list against list_del() racesBoris Burkov1-0/+8
2025-03-18btrfs: use BTRFS_PATH_AUTO_FREE in run_delayed_extent_op()David Sterba1-6/+5
2025-03-18btrfs: use BTRFS_PATH_AUTO_FREE in btrfs_lookup_extent_info()David Sterba1-6/+5
2025-03-18btrfs: do trivial BTRFS_PATH_AUTO_FREE conversionsDavid Sterba1-17/+8
2025-03-18btrfs: unify ordering of btrfs_key initializationsDavid Sterba1-4/+4
2025-01-13btrfs: use SECTOR_SIZE defines in btrfs_issue_discard()David Sterba1-2/+2
2025-01-13btrfs: extent-tree: remove unnecessary calls to btrfs_mark_buffer_dirty()Filipe Manana1-10/+0
2025-01-13btrfs: add assertions and comment about path expectations to btrfs_cross_ref_exist()Filipe Manana1-0/+25
2025-01-13btrfs: add function comment for check_committed_ref()Filipe Manana1-0/+42
2025-01-13btrfs: simplify arguments for btrfs_cross_ref_exist()Filipe Manana1-10/+12
2025-01-13btrfs: simplify return logic at check_committed_ref()Filipe Manana1-14/+9
2025-01-13btrfs: avoid redundant call to get inline ref type at check_committed_ref()Filipe Manana1-1/+1
2025-01-13btrfs: remove the snapshot check from check_committed_ref()Filipe Manana1-8/+0
2025-01-13btrfs: remove no longer needed strict argument from can_nocow_extent()Filipe Manana1-9/+6
2025-01-13btrfs: drop fs_info argument from btrfs_update_space_info_*()Naohiro Aota1-7/+3
2025-01-13btrfs: factor out btrfs_return_free_space()Naohiro Aota1-21/+4
2025-01-13btrfs: move select_delayed_ref() and export itJosef Bacik1-25/+1
2024-12-18Merge tag 'for-6.13-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linuxLinus Torvalds1-3/+3
2024-12-17btrfs: fix improper generation check in snapshot deleteJosef Bacik1-3/+3
2024-11-29btrfs: don't loop for nowait writes when checking for cross referencesFilipe Manana1-1/+1
2024-11-11btrfs: track delayed ref heads in an xarrayFilipe Manana1-1/+1
2024-11-11btrfs: pass fs_info to btrfs_delete_ref_head()Filipe Manana1-4/+5
2024-11-11btrfs: pass fs_info to functions that search for delayed ref headsFilipe Manana1-5/+5
2024-11-11btrfs: move delayed ref head unselection to delayed-ref.cFilipe Manana1-13/+3
2024-11-11btrfs: simplify obtaining a delayed ref headFilipe Manana1-34/+1
2024-11-11btrfs: change return type of btrfs_delayed_ref_lock() to booleanFilipe Manana1-3/+3
2024-11-11btrfs: remove num_entries atomic counter from delayed ref rootFilipe Manana1-1/+0
2024-11-11btrfs: reduce extent tree lock contention when searching for inline backrefRobbie Ko1-3/+23
2024-11-11btrfs: drop unused parameter refs from visit_node_for_delete()David Sterba1-4/+3
2024-11-11btrfs: correct typos in multiple comments across various filesShen Lichuan1-1/+1
2024-10-07btrfs: add cancellation points to trim loopsLuca Stefani1-1/+6
2024-10-07btrfs: split remaining space to discard in chunksLuca Stefani1-4/+15
2024-09-10btrfs: always update fstrim_range on failure in FITRIM ioctlLuca Stefani1-2/+2
2024-08-13btrfs: check delayed refs when we're checking if a ref existsJosef Bacik1-6/+45
2024-07-29btrfs: zoned: fix zone_unusable accounting on making block group read-write againNaohiro Aota1-1/+2
2024-07-11btrfs: avoid allocating and running pointless delayed extent operationsFilipe Manana1-36/+27
2024-07-11btrfs: don't BUG_ON() when 0 reference count at btrfs_lookup_extent_info()Filipe Manana1-4/+20
2024-07-11btrfs: reduce nesting for extent processing at btrfs_lookup_extent_info()Filipe Manana1-13/+9
2024-07-11btrfs: remove superfluous metadata check at btrfs_lookup_extent_info()Filipe Manana1-1/+1
2024-07-11btrfs: remove NULL transaction support for btrfs_lookup_extent_info()Filipe Manana1-14/+2
2024-07-11btrfs: do not BUG_ON() when freeing tree block after errorFilipe Manana1-10/+14
2024-07-11btrfs: add documentation around snapshot deleteJosef Bacik1-0/+51
2024-07-11btrfs: handle errors from btrfs_dec_ref() properlyJosef Bacik1-1/+4
2024-07-11btrfs: convert correctness BUG_ON()'s to ASSERT()'s in walk_up_proc()Josef Bacik1-3/+3
2024-07-11btrfs: clean up our handling of refs == 0 in snapshot deleteJosef Bacik1-5/+23
2024-07-11btrfs: replace BUG_ON with ASSERT in walk_down_proc()Josef Bacik1-2/+2
2024-07-11btrfs: handle errors from ref mods during UPDATE_BACKREF in walk_down_proc()Josef Bacik1-3/+12
2024-07-11btrfs: don't BUG_ON on ENOMEM from btrfs_lookup_extent_info() in walk_down_proc()Josef Bacik1-1/+0
2024-07-11btrfs: extract the reference dropping code into it's own helperJosef Bacik1-70/+87
2024-07-11btrfs: unify logic to decide if we need to walk down into a node during snapshot deleteJosef Bacik1-44/+89