| Age | Commit message (Expand) | Author | Files | Lines |
| 2025-09-23 | btrfs: annotate btrfs_is_testing() as unlikely and make it return bool | Filipe Manana | 1 | -4/+3 |
| 2025-09-23 | btrfs: fix typos in comments and strings | David Sterba | 1 | -1/+1 |
| 2025-09-22 | btrfs: move ref-verify under CONFIG_BTRFS_DEBUG | Leo Martins | 1 | -2/+2 |
| 2025-07-21 | btrfs: add btrfs prefix to is_fstree() and make it return bool | Filipe Manana | 1 | -5/+5 |
| 2025-05-15 | btrfs: simplify return logic from btrfs_delayed_ref_init() | Yangtao Li | 1 | -1/+1 |
| 2025-05-15 | btrfs: use rb_entry_safe() where possible to simplify code | David Sterba | 1 | -5/+2 |
| 2025-01-13 | btrfs: update tree_insert() to use rb helpers | Roger L. Beckermeyer III | 1 | -27/+18 |
| 2025-01-13 | btrfs: drop fs_info argument from btrfs_update_space_info_*() | Naohiro Aota | 1 | -3/+2 |
| 2025-01-13 | btrfs: selftests: add delayed ref self test cases | Josef Bacik | 1 | -3/+10 |
| 2025-01-13 | btrfs: move select_delayed_ref() and export it | Josef Bacik | 1 | -0/+26 |
| 2024-11-18 | Merge tag 'for-6.13-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kda... | Linus Torvalds | 1 | -129/+196 |
| 2024-11-14 | btrfs: fix incorrect comparison for delayed refs | Josef Bacik | 1 | -1/+1 |
| 2024-11-11 | btrfs: remove no longer used delayed ref head search functionality | Filipe Manana | 1 | -29/+5 |
| 2024-11-11 | btrfs: track delayed ref heads in an xarray | Filipe Manana | 1 | -104/+88 |
| 2024-11-11 | btrfs: assert delayed refs lock is held at add_delayed_ref_head() | Filipe Manana | 1 | -0/+1 |
| 2024-11-11 | btrfs: assert delayed refs lock is held at find_first_ref_head() | Filipe Manana | 1 | -0/+2 |
| 2024-11-11 | btrfs: assert delayed refs lock is held at find_ref_head() | Filipe Manana | 1 | -2/+2 |
| 2024-11-11 | btrfs: pass fs_info to btrfs_delete_ref_head() | Filipe Manana | 1 | -2/+3 |
| 2024-11-11 | btrfs: pass fs_info to functions that search for delayed ref heads | Filipe Manana | 1 | -4/+8 |
| 2024-11-11 | btrfs: move delayed ref head unselection to delayed-ref.c | Filipe Manana | 1 | -0/+10 |
| 2024-11-11 | btrfs: simplify obtaining a delayed ref head | Filipe Manana | 1 | -5/+22 |
| 2024-11-11 | btrfs: change return type of btrfs_delayed_ref_lock() to boolean | Filipe Manana | 1 | -6/+6 |
| 2024-11-11 | btrfs: remove num_entries atomic counter from delayed ref root | Filipe Manana | 1 | -4/+0 |
| 2024-11-11 | btrfs: use helper to find first ref head at btrfs_destroy_delayed_refs() | Filipe Manana | 1 | -4/+5 |
| 2024-11-11 | btrfs: remove duplicated code to drop delayed ref during transaction abort | Filipe Manana | 1 | -7/+1 |
| 2024-11-11 | btrfs: remove fs_info parameter from btrfs_destroy_delayed_refs() | Filipe Manana | 1 | -2/+2 |
| 2024-11-11 | btrfs: move btrfs_destroy_delayed_refs() to delayed-ref.c | Filipe Manana | 1 | -0/+81 |
| 2024-11-11 | btrfs: qgroups: remove bytenr field from struct btrfs_qgroup_extent_record | Filipe Manana | 1 | -4/+4 |
| 2024-11-07 | btrfs: reinitialize delayed ref list after deleting it from the list | Filipe Manana | 1 | -1/+1 |
| 2024-10-11 | btrfs: use sector numbers as keys for the dirty extents xarray | Filipe Manana | 1 | -7/+8 |
| 2024-10-07 | btrfs: fix missing error handling when adding delayed ref with qgroups enabled | Filipe Manana | 1 | -9/+33 |
| 2024-09-10 | btrfs: qgroup: use xarray to track dirty extents in transaction | Junchao Sun | 1 | -3/+14 |
| 2024-09-10 | btrfs: qgroup: use goto style to handle errors in add_delayed_ref() | Junchao Sun | 1 | -9/+10 |
| 2024-08-13 | btrfs: check delayed refs when we're checking if a ref exists | Josef Bacik | 1 | -0/+67 |
| 2024-07-11 | btrfs: avoid allocating and running pointless delayed extent operations | Filipe Manana | 1 | -1/+8 |
| 2024-07-11 | btrfs: remove no longer used btrfs_migrate_to_delayed_refs_rsv() | Filipe Manana | 1 | -42/+0 |
| 2024-05-07 | btrfs: replace btrfs_delayed_*_ref with btrfs_*_ref | Josef Bacik | 1 | -6/+4 |
| 2024-05-07 | btrfs: rename btrfs_data_ref->ino to ->objectid | Josef Bacik | 1 | -2/+2 |
| 2024-05-07 | btrfs: move ->parent and ->ref_root into btrfs_delayed_ref_node | Josef Bacik | 1 | -56/+26 |
| 2024-05-07 | btrfs: rename ->len to ->num_bytes in btrfs_ref | Josef Bacik | 1 | -4/+4 |
| 2024-05-07 | btrfs: unify the btrfs_add_delayed_*_ref helpers into one helper | Josef Bacik | 1 | -77/+25 |
| 2024-05-07 | btrfs: simplify delayed ref tracepoints | Josef Bacik | 1 | -12/+2 |
| 2024-05-07 | btrfs: move ref specific initialization into init_delayed_ref_common | Josef Bacik | 1 | -14/+11 |
| 2024-05-07 | btrfs: initialize btrfs_delayed_ref_head with btrfs_ref | Josef Bacik | 1 | -28/+25 |
| 2024-05-07 | btrfs: pass btrfs_ref to init_delayed_ref_common | Josef Bacik | 1 | -21/+8 |
| 2024-05-07 | btrfs: move ref_root into btrfs_ref | Josef Bacik | 1 | -16/+13 |
| 2024-05-07 | btrfs: do not use a function to initialize btrfs_ref | Josef Bacik | 1 | -10/+0 |
| 2024-05-07 | btrfs: embed data_ref and tree_ref in btrfs_delayed_ref_node | Josef Bacik | 1 | -34/+17 |
| 2024-05-07 | btrfs: add a helper to get the delayed ref node from the data/tree ref | Josef Bacik | 1 | -9/+19 |
| 2024-03-05 | btrfs: remove SLAB_MEM_SPREAD flag use | Chengming Zhou | 1 | -8/+4 |
| 2024-03-04 | btrfs: use KMEM_CACHE() to create delayed ref caches | Kunwu Chan | 1 | -16/+8 |
| 2024-03-04 | btrfs: uninline some static inline helpers from delayed-ref.h | David Sterba | 1 | -0/+65 |
| 2023-11-09 | btrfs: fix qgroup record leaks when using simple quotas | Filipe Manana | 1 | -2/+2 |
| 2023-10-12 | btrfs: stop reserving excessive space for block group item insertions | Filipe Manana | 1 | -0/+35 |
| 2023-10-12 | btrfs: stop reserving excessive space for block group item updates | Filipe Manana | 1 | -0/+35 |
| 2023-10-12 | btrfs: record simple quota deltas in delayed refs | Boris Burkov | 1 | -0/+1 |
| 2023-10-12 | btrfs: track original extent owner in head_ref | Boris Burkov | 1 | -4/+15 |
| 2023-10-12 | btrfs: rename tree_ref and data_ref owning_root | Boris Burkov | 1 | -5/+5 |
| 2023-10-12 | btrfs: qgroup: add new quota mode for simple quotas | Boris Burkov | 1 | -4/+2 |
| 2023-10-12 | btrfs: always reserve space for delayed refs when starting transaction | Filipe Manana | 1 | -1/+20 |
| 2023-10-12 | btrfs: stop doing excessive space reservation for csum deletion | Filipe Manana | 1 | -13/+20 |
| 2023-10-12 | btrfs: remove pointless initialization at btrfs_delayed_refs_rsv_release() | Filipe Manana | 1 | -1/+1 |
| 2023-10-12 | btrfs: reserve space for delayed refs on a per ref basis | Filipe Manana | 1 | -10/+22 |
| 2023-10-12 | btrfs: pass a space_info argument to btrfs_reserve_metadata_bytes() | Filipe Manana | 1 | -3/+3 |
| 2023-10-12 | btrfs: reformat remaining kdoc style comments | David Sterba | 1 | -2/+1 |
| 2023-09-20 | btrfs: prevent transaction block reserve underflow when starting transaction | Filipe Manana | 1 | -8/+1 |
| 2023-09-20 | btrfs: fix race when refilling delayed refs block reserve | Filipe Manana | 1 | -3/+34 |
| 2023-06-19 | btrfs: use a single switch statement when initializing delayed ref head | Filipe Manana | 1 | -20/+24 |
| 2023-06-19 | btrfs: use bool type for delayed ref head fields that are used as booleans | Filipe Manana | 1 | -6/+6 |
| 2023-06-19 | btrfs: assert correct lock is held at btrfs_select_ref_head() | Filipe Manana | 1 | -0/+1 |
| 2023-06-19 | btrfs: get rid of label and goto at insert_delayed_ref() | Filipe Manana | 1 | -11/+8 |
| 2023-06-19 | btrfs: make insert_delayed_ref() return a bool instead of an int | Filipe Manana | 1 | -13/+14 |
| 2023-06-19 | btrfs: use a bool to track qgroup record insertion when adding ref head | Filipe Manana | 1 | -5/+5 |
| 2023-06-19 | btrfs: remove pointless in_tree field from struct btrfs_delayed_ref_node | Filipe Manana | 1 | -2/+0 |
| 2023-06-19 | btrfs: remove unused is_head field from struct btrfs_delayed_ref_node | Filipe Manana | 1 | -1/+0 |
| 2023-04-17 | btrfs: add helper to calculate space for delayed references | Filipe Manana | 1 | -36/+4 |
| 2023-04-17 | btrfs: calculate the right space for a single delayed ref when refilling | Filipe Manana | 1 | -0/+11 |
| 2023-04-17 | btrfs: remove obsolete delayed ref throttling logic when truncating items | Filipe Manana | 1 | -16/+0 |
| 2023-04-17 | btrfs: simplify btrfs_should_throttle_delayed_refs() | Filipe Manana | 1 | -4/+2 |
| 2023-04-17 | btrfs: pass a bool size update argument to btrfs_block_rsv_add_bytes() | Filipe Manana | 1 | -1/+1 |
| 2023-02-13 | btrfs: directly pass in fs_info to btrfs_merge_delayed_refs | Johannes Thumshirn | 1 | -2/+1 |
| 2023-02-13 | btrfs: drop trans parameter of insert_delayed_ref | Johannes Thumshirn | 1 | -4/+3 |
| 2023-02-13 | btrfs: remove trans parameter of merge_ref | Johannes Thumshirn | 1 | -3/+2 |
| 2023-02-13 | btrfs: drop unused trans parameter of drop_delayed_ref | Johannes Thumshirn | 1 | -5/+4 |
| 2022-12-05 | btrfs: update function comments | David Sterba | 1 | -10/+9 |
| 2022-12-05 | btrfs: move mount option definitions to fs.h | Josef Bacik | 1 | -0/+1 |
| 2022-12-05 | btrfs: move the printk helpers out of ctree.h | Josef Bacik | 1 | -0/+1 |
| 2022-07-25 | btrfs: switch btrfs_block_rsv::full to bool | David Sterba | 1 | -2/+2 |
| 2022-05-16 | btrfs: remove btrfs_delayed_extent_op::is_data | David Sterba | 1 | -3/+1 |
| 2022-01-07 | btrfs: reserve extra space for the free space tree | Josef Bacik | 1 | -0/+22 |
| 2022-01-03 | btrfs: change root to fs_info for btrfs_reserve_metadata_bytes | Josef Bacik | 1 | -2/+1 |
| 2021-10-26 | btrfs: pull up qgroup checks from delayed-ref core to init time | Nikolay Borisov | 1 | -4/+0 |
| 2021-10-26 | btrfs: rely on owning_root field in btrfs_add_delayed_tree_ref to detect CHUN... | Nikolay Borisov | 1 | -1/+1 |
| 2021-10-26 | btrfs: rename root fields in delayed refs structs | Nikolay Borisov | 1 | -6/+7 |
| 2021-07-22 | btrfs: fix lock inversion problem when doing qgroup extent tracing | Filipe Manana | 1 | -2/+2 |
| 2021-06-22 | btrfs: rip out btrfs_space_info::total_bytes_pinned | Josef Bacik | 1 | -26/+0 |
| 2021-04-19 | btrfs: update debug message when checking seq number of a delayed ref | Filipe Manana | 1 | -3/+2 |
| 2021-04-19 | btrfs: add and use helper to get lowest sequence number for the tree mod log | Filipe Manana | 1 | -24/+9 |
| 2021-04-19 | btrfs: move the tree mod log code into its own file | Filipe Manana | 1 | -4/+5 |
| 2021-02-08 | btrfs: account for new extents being deleted in total_bytes_pinned | Josef Bacik | 1 | -0/+5 |
| 2021-02-08 | btrfs: handle space_info::total_bytes_pinned inside the delayed ref itself | Josef Bacik | 1 | -21/+30 |
| 2021-02-08 | btrfs: fix parameter description in delayed-ref.c functions | Nikolay Borisov | 1 | -10/+13 |
| 2020-03-23 | btrfs: Remove __ prefix from btrfs_block_rsv_release | Nikolay Borisov | 1 | -2/+1 |
| 2020-01-31 | Btrfs: fix race between adding and putting tree mod seq elements and nodes | Filipe Manana | 1 | -4/+4 |
| 2019-09-09 | btrfs: rename btrfs_space_info_add_old_bytes | Josef Bacik | 1 | -1/+1 |
| 2019-09-09 | btrfs: rename the btrfs_calc_*_metadata_size helpers | Josef Bacik | 1 | -4/+4 |
| 2019-07-04 | btrfs: migrate the delayed refs rsv code | Josef Bacik | 1 | -0/+174 |
| 2019-07-02 | btrfs: assert delayed ref lock in btrfs_find_delayed_ref_head | David Sterba | 1 | -3/+4 |
| 2019-04-29 | btrfs: remove unused parameter fs_info from btrfs_add_delayed_extent_op | David Sterba | 1 | -2/+1 |
| 2019-04-29 | btrfs: delayed-ref: Use btrfs_ref to refactor btrfs_add_delayed_data_ref() | Qu Wenruo | 1 | -5/+14 |
| 2019-04-29 | btrfs: delayed-ref: Use btrfs_ref to refactor btrfs_add_delayed_tree_ref() | Qu Wenruo | 1 | -7/+17 |
| 2019-02-25 | btrfs: qgroup: Move reserved data accounting from btrfs_delayed_ref_head to b... | Qu Wenruo | 1 | -11/+4 |
| 2018-12-17 | btrfs: introduce delayed_refs_rsv | Josef Bacik | 1 | -6/+38 |
| 2018-12-17 | btrfs: only track ref_heads in delayed_ref_updates | Josef Bacik | 1 | -3/+0 |
| 2018-12-17 | btrfs: add btrfs_delete_ref_head helper | Josef Bacik | 1 | -0/+14 |
| 2018-10-17 | btrfs: delayed-ref: extract find_first_ref_head from find_ref_head | Lu Fengqi | 1 | -23/+27 |
| 2018-10-15 | btrfs: switch return_bigger to bool in find_ref_head | Lu Fengqi | 1 | -5/+6 |
| 2018-10-15 | btrfs: delayed-ref: pass delayed_refs directly to btrfs_delayed_ref_lock | Lu Fengqi | 1 | -4/+1 |
| 2018-10-15 | btrfs: delayed-ref: pass delayed_refs directly to btrfs_select_ref_head | Lu Fengqi | 1 | -5/+2 |
| 2018-10-15 | Btrfs: delayed-refs: use rb_first_cached for ref_tree | Liu Bo | 1 | -10/+14 |
| 2018-10-15 | Btrfs: delayed-refs: use rb_first_cached for href_root | Liu Bo | 1 | -13/+17 |
| 2018-08-06 | btrfs: Streamline memory allocation failure handling in btrfs_add_delayed_tre... | Nikolay Borisov | 1 | -18/+17 |
| 2018-08-06 | btrfs: Remove fs_info from btrfs_add_delayed_data_ref | Nikolay Borisov | 1 | -2/+2 |
| 2018-08-06 | btrfs: Remove fs_info from btrfs_add_delayed_tree_ref | Nikolay Borisov | 1 | -2/+2 |
| 2018-05-28 | btrfs: split delayed ref head initialization and addition | Nikolay Borisov | 1 | -25/+22 |
| 2018-05-28 | btrfs: Use init_delayed_ref_head in add_delayed_ref_head | Nikolay Borisov | 1 | -59/+4 |
| 2018-05-28 | btrfs: Introduce init_delayed_ref_head | Nikolay Borisov | 1 | -0/+65 |
| 2018-05-28 | btrfs: Open-code add_delayed_data_ref | Nikolay Borisov | 1 | -40/+22 |
| 2018-05-28 | btrfs: Open-code add_delayed_tree_ref | Nikolay Borisov | 1 | -45/+20 |
| 2018-05-28 | btrfs: Use init_delayed_ref_common in add_delayed_data_ref | Nikolay Borisov | 1 | -25/+10 |
| 2018-05-28 | btrfs: Use init_delayed_ref_common in add_delayed_tree_ref | Nikolay Borisov | 1 | -24/+11 |
| 2018-05-28 | btrfs: Factor out common delayed refs init code | Nikolay Borisov | 1 | -0/+51 |
| 2018-05-28 | btrfs: Drop fs_info parameter from btrfs_merge_delayed_refs | Nikolay Borisov | 1 | -1/+1 |
| 2018-05-28 | btrfs: Drop fs_info parameter from add_delayed_data_ref | Nikolay Borisov | 1 | -7/+5 |
| 2018-05-28 | btrfs: Drop add_delayed_ref_head fs_info parameter | Nikolay Borisov | 1 | -11/+10 |
| 2018-05-28 | btrfs: Drop delayed_refs argument from btrfs_check_delayed_seq | Nikolay Borisov | 1 | -6/+3 |
| 2018-04-20 | btrfs: Fix race condition between delayed refs and blockgroup removal | Nikolay Borisov | 1 | -5/+14 |
| 2018-04-12 | btrfs: replace GPL boilerplate by SPDX -- sources | David Sterba | 1 | -14/+1 |
| 2018-03-31 | btrfs: use lockdep_assert_held for spinlocks | David Sterba | 1 | -3/+3 |
| 2018-03-26 | btrfs: add more __cold annotations | David Sterba | 1 | -1/+1 |
| 2018-02-02 | btrfs: Ignore errors from btrfs_qgroup_trace_extent_post | Nikolay Borisov | 1 | -1/+2 |
| 2018-01-22 | Btrfs: add __init macro to btrfs init functions | Liu Bo | 1 | -1/+1 |
| 2017-11-01 | btrfs: track refs in a rb_tree instead of a list | Josef Bacik | 1 | -52/+56 |
| 2017-11-01 | btrfs: add a comp_refs() helper | Josef Bacik | 1 | -24/+30 |
| 2017-11-01 | btrfs: switch args for comp_*_refs | Josef Bacik | 1 | -4/+4 |
| 2017-10-30 | btrfs: remove type argument from comp_tree_refs | Josef Bacik | 1 | -6/+4 |
| 2017-10-30 | btrfs: remove delayed_ref_node from ref_head | Josef Bacik | 1 | -72/+54 |
| 2017-06-29 | Btrfs: return old and new total ref mods when adding delayed refs | Omar Sandoval | 1 | -8/+21 |
| 2017-04-18 | btrfs: convert btrfs_delayed_ref_node.refs from atomic_t to refcount_t | Elena Reshetova | 1 | -4/+4 |
| 2017-02-17 | btrfs: qgroup: Move half of the qgroup accounting time out of commit trans | Qu Wenruo | 1 | -4/+16 |
| 2017-02-14 | Btrfs: pass delayed_refs directly to btrfs_find_delayed_ref_head | Liu Bo | 1 | -4/+1 |
| 2017-02-14 | btrfs: drop unused extent_op arg from btrfs_add_delayed_data_ref | Jeff Mahoney | 1 | -4/+2 |
| 2016-11-30 | btrfs: improve delayed refs iterations | Wang Xiaoguang | 1 | -0/+18 |
| 2016-11-30 | btrfs: qgroup: Rename functions to make it follow reserve,trace,account steps | Qu Wenruo | 1 | -1/+1 |
| 2016-09-26 | btrfs: convert pr_* to btrfs_* where possible | Jeff Mahoney | 1 | -4/+5 |
| 2016-09-26 | Btrfs: add a flags field to btrfs_fs_info | Josef Bacik | 1 | -2/+4 |
| 2016-08-25 | btrfs: qgroup: Refactor btrfs_qgroup_insert_dirty_extent() | Qu Wenruo | 1 | -5/+2 |
| 2016-08-05 | Merge branch 'integration-4.8' of git://git.kernel.org/pub/scm/linux/kernel/g... | Chris Mason | 1 | -27/+0 |
| 2016-08-03 | Btrfs: remove unused function btrfs_add_delayed_qgroup_reserve() | Filipe Manana | 1 | -27/+0 |
| 2016-07-26 | btrfs: prefix fsid to all trace events | Jeff Mahoney | 1 | -4/+5 |
| 2016-07-26 | btrfs: Fix slab accounting flags | Nikolay Borisov | 1 | -4/+4 |
| 2016-02-18 | btrfs: drop null testing before destroy functions | Kinglong Mee | 1 | -8/+4 |
| 2016-01-07 | btrfs: better packing of btrfs_delayed_extent_op | David Sterba | 1 | -2/+2 |
| 2015-10-26 | btrfs: qgroup: Fix a race in delayed_ref which leads to abort trans | Qu Wenruo | 1 | -5/+17 |
| 2015-10-25 | Btrfs: fix regression running delayed references when using qgroups | Filipe Manana | 1 | -20/+8 |
| 2015-10-25 | Btrfs: fix regression when running delayed references | Filipe Manana | 1 | -0/+113 |
| 2015-10-21 | btrfs: delayed_ref: Add new function to record reserved space into delayed ref | Qu Wenruo | 1 | -0/+29 |
| 2015-06-24 | btrfs: delayed-ref: double free in btrfs_add_delayed_tree_ref() | Dan Carpenter | 1 | -9/+11 |
| 2015-06-10 | btrfs: qgroup: Record possible quota-related extent for qgroup. | Qu Wenruo | 1 | -7/+43 |
| 2015-06-10 | btrfs: delayed-ref: Cleanup the unneeded functions. | Qu Wenruo | 1 | -174/+0 |
| 2015-06-10 | btrfs: delayed-ref: Use list to replace the ref_root in ref_head. | Qu Wenruo | 1 | -74/+82 |
| 2015-04-10 | Btrfs: account for crcs in delayed ref processing | Josef Bacik | 1 | -2/+20 |
| 2014-06-09 | Btrfs: rework qgroup accounting | Josef Bacik | 1 | -16/+23 |
| 2014-03-20 | Btrfs: fix race when updating existing ref head | Filipe Manana | 1 | -1/+1 |
| 2014-03-10 | Btrfs: cleanup delayed-ref.c:find_ref_head() | Filipe Manana | 1 | -18/+6 |
| 2014-03-10 | Btrfs: remove unnecessary ref heads rb tree search | Filipe Manana | 1 | -4/+3 |
| 2014-01-28 | Btrfs: attach delayed ref updates to delayed ref heads | Josef Bacik | 1 | -115/+108 |
| 2014-01-28 | Btrfs: skip merge part for delayed data refs | Liu Bo | 1 | -0/+7 |
| 2014-01-28 | Btrfs: introduce a head ref rbtree | Liu Bo | 1 | -52/+74 |
| 2013-09-01 | Btrfs: get rid of sparse warnings | Stefan Behrens | 1 | -1/+1 |
| 2013-09-01 | Btrfs/tracepoint: update delayed ref tracepoints | Liu Bo | 1 | -3/+3 |
| 2013-05-06 | Btrfs: separate sequence numbers for delayed ref tracking and tree mod log | Jan Schmidt | 1 | -2/+4 |
| 2013-05-06 | Btrfs: compare relevant parts of delayed tree refs | Josef Bacik | 1 | -10/+14 |
| 2013-02-20 | Btrfs: make delayed ref lock logic more readable | Miao Xie | 1 | -0/+8 |
| 2013-02-20 | Btrfs: use slabs for delayed reference allocation | Miao Xie | 1 | -11/+63 |
| 2012-08-28 | Btrfs: allow delayed refs to be merged | Josef Bacik | 1 | -27/+128 |
| 2012-08-28 | Btrfs: fix deadlock in wait_for_more_refs | Arne Jansen | 1 | -8/+0 |
| 2012-07-12 | Btrfs: hooks for qgroup to record delayed refs | Jan Schmidt | 1 | -6/+10 |
| 2012-07-10 | Btrfs: join tree mod log code with the code holding back delayed refs | Jan Schmidt | 1 | -20/+24 |
| 2012-05-30 | Btrfs: use delayed ref sequence numbers for all fs-tree updates | Jan Schmidt | 1 | -4/+6 |
| 2012-03-22 | btrfs: return void in functions without error conditions | Jeff Mahoney | 1 | -19/+8 |
| 2012-03-22 | btrfs: Fix kfree of member instead of structure | Jeff Mahoney | 1 | -3/+3 |
| 2012-01-04 | Btrfs: add waitqueue instead of doing busy waiting for more delayed refs | Jan Schmidt | 1 | -0/+8 |
| 2012-01-04 | Btrfs: put back delayed refs that are too new | Arne Jansen | 1 | -18/+25 |
| 2012-01-04 | Btrfs: add sequence numbers to delayed refs | Arne Jansen | 1 | -0/+34 |
| 2011-12-22 | Btrfs: always save ref_root in delayed refs | Arne Jansen | 1 | -10/+8 |
| 2011-12-22 | Btrfs: mark delayed refs as for cow | Arne Jansen | 1 | -19/+31 |
| 2011-05-06 | btrfs: remove old unused commented out code | David Sterba | 1 | -76/+0 |
| 2011-05-06 | btrfs: remove all unused functions | David Sterba | 1 | -38/+0 |
| 2011-03-28 | Btrfs: add initial tracepoint support for btrfs | liubo | 1 | -0/+6 |