aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/extent-tree.c
AgeCommit message (Expand)AuthorFilesLines
2024-05-07btrfs: simplify return variables in btrfs_drop_subtree()Gravatar Anand Jain 1-9/+7
2024-05-07btrfs: simplify return variables in lookup_extent_data_ref()Gravatar Anand Jain 1-15/+14
2024-05-07btrfs: change root->root_key.objectid to btrfs_root_id()Gravatar Josef Bacik 1-31/+25
2024-05-07btrfs: stop referencing btrfs_delayed_tree_ref directlyGravatar Josef Bacik 1-5/+5
2024-05-07btrfs: stop referencing btrfs_delayed_data_ref directlyGravatar Josef Bacik 1-9/+11
2024-05-07btrfs: make the insert backref helpers take a btrfs_delayed_ref_nodeGravatar Josef Bacik 1-25/+21
2024-05-07btrfs: drop unnecessary arguments from __btrfs_free_extentGravatar Josef Bacik 1-15/+8
2024-05-07btrfs: make __btrfs_inc_extent_ref take a btrfs_delayed_ref_nodeGravatar Josef Bacik 1-32/+9
2024-05-07btrfs: move ->parent and ->ref_root into btrfs_delayed_ref_nodeGravatar Josef Bacik 1-9/+9
2024-05-07btrfs: rename ->len to ->num_bytes in btrfs_refGravatar Josef Bacik 1-7/+7
2024-05-07btrfs: simplify delayed ref tracepointsGravatar Josef Bacik 1-2/+2
2024-05-07btrfs: move ref_root into btrfs_refGravatar Josef Bacik 1-22/+16
2024-05-07btrfs: do not use a function to initialize btrfs_refGravatar Josef Bacik 1-38/+49
2024-05-07btrfs: locking: rename __btrfs_tree_lock() and __btrfs_tree_read_lock()Gravatar Filipe Manana 1-1/+1
2024-04-09btrfs: zoned: add ASSERT and WARN for EXTENT_BUFFER_ZONED_ZEROOUT handlingGravatar Naohiro Aota 1-0/+8
2024-03-04btrfs: avoid unnecessary ref initialization when freeing log tree blockGravatar Filipe Manana 1-6/+7
2024-03-04btrfs: change BUG_ON to assertion when verifying root in btrfs_alloc_reserved...Gravatar David Sterba 1-1/+1
2024-03-04btrfs: handle invalid extent item reference found in check_committed_ref()Gravatar David Sterba 1-1/+8
2024-03-04btrfs: make btrfs_error_unpin_extent_range() return voidGravatar David Sterba 1-7/+6
2024-03-04btrfs: return errors from unpin_extent_range()Gravatar David Sterba 1-4/+15
2024-03-04btrfs: remove unused included headersGravatar David Sterba 1-4/+1
2024-01-18btrfs: don't warn if discard range is not aligned to sectorGravatar David Sterba 1-1/+2
2024-01-12btrfs: zoned: optimize hint byte for zoned allocatorGravatar Naohiro Aota 1-0/+18
2024-01-12btrfs: zoned: factor out prepare_allocation_zoned()Gravatar Naohiro Aota 1-13/+19
2023-12-15btrfs: reflow btrfs_free_tree_blockGravatar Johannes Thumshirn 1-49/+50
2023-12-15btrfs: remove now unneeded btrfs_redirty_list_addGravatar Johannes Thumshirn 1-4/+1
2023-12-15btrfs: rename EXTENT_BUFFER_NO_CHECK to EXTENT_BUFFER_ZONED_ZEROOUTGravatar Johannes Thumshirn 1-1/+1
2023-12-06btrfs: ensure releasing squota reserve on head refsGravatar Boris Burkov 1-14/+34
2023-11-03btrfs: get correct owning_root when dropping snapshotGravatar Josef Bacik 1-8/+17
2023-10-12btrfs: track data relocation with simple quotaGravatar Boris Burkov 1-5/+8
2023-10-12btrfs: qgroup: track metadata relocation COW with simple quotaGravatar Boris Burkov 1-2/+5
2023-10-12btrfs: qgroup: check generation when recording simple quota deltaGravatar Boris Burkov 1-0/+4
2023-10-12btrfs: record simple quota deltas in delayed refsGravatar Boris Burkov 1-8/+75
2023-10-12btrfs: add helper for inline owner ref lookupGravatar Boris Burkov 1-0/+48
2023-10-12btrfs: new inline ref storing owning subvol of data extentsGravatar Boris Burkov 1-11/+46
2023-10-12btrfs: track owning root in btrfs_refGravatar Boris Burkov 1-8/+13
2023-10-12btrfs: rename tree_ref and data_ref owning_rootGravatar Boris Burkov 1-5/+5
2023-10-12btrfs: delete stripe extent on extent deletionGravatar Johannes Thumshirn 1-0/+6
2023-10-12btrfs: add support for inserting raid stripe extentsGravatar Johannes Thumshirn 1-0/+1
2023-10-12btrfs: remove useless comment from btrfs_pin_extent_for_log_replay()Gravatar Filipe Manana 1-3/+0
2023-10-12btrfs: remove stale comment from btrfs_free_extent()Gravatar Filipe Manana 1-1/+0
2023-10-12btrfs: abort transaction on generation mismatch when marking eb as dirtyGravatar Filipe Manana 1-16/+20
2023-10-12btrfs: stop doing excessive space reservation for csum deletionGravatar Filipe Manana 1-5/+5
2023-10-12btrfs: reserve space for delayed refs on a per ref basisGravatar Filipe Manana 1-14/+15
2023-10-12btrfs: allow to run delayed refs by bytes to be released instead of countGravatar Filipe Manana 1-19/+34
2023-10-12btrfs: simplify check for extent item overrun at lookup_inline_extent_backref()Gravatar Filipe Manana 1-11/+11
2023-10-12btrfs: return -EUCLEAN if extent item is missing when searching inline backrefGravatar Filipe Manana 1-1/+1
2023-10-12btrfs: use a single variable for return value at lookup_inline_extent_backref()Gravatar Filipe Manana 1-18/+15
2023-10-12btrfs: use a single variable for return value at run_delayed_extent_op()Gravatar Filipe Manana 1-8/+5
2023-10-12btrfs: remove pointless 'ref_root' variable from run_delayed_data_ref()Gravatar Filipe Manana 1-5/+3