aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/delayed-inode.c
AgeCommit message (Expand)AuthorFilesLines
2023-12-15btrfs: switch btrfs_root::delayed_nodes_tree to xarray from radix-treeGravatar David Sterba 1-29/+35
2023-12-15btrfs: do not utilize goto to implement delayed inode ref deletionGravatar Qu Wenruo 1-21/+24
2023-10-30Merge tag 'for-6.7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdav...Gravatar Linus Torvalds 1-16/+11
2023-10-30Merge tag 'vfs-6.7.ctime' of gitolite.kernel.org:pub/scm/linux/kernel/git/vfs...Gravatar Linus Torvalds 1-10/+10
2023-10-18btrfs: convert to new timestamp accessorsGravatar Jeff Layton 1-10/+10
2023-10-12btrfs: open code timespec64 in struct btrfs_inodeGravatar David Sterba 1-8/+4
2023-10-12btrfs: remove redundant root argument from btrfs_delayed_update_inode()Gravatar Filipe Manana 1-1/+1
2023-10-12btrfs: merge ordered work callbacks in btrfs_work into oneGravatar David Sterba 1-2/+1
2023-10-12btrfs: abort transaction on generation mismatch when marking eb as dirtyGravatar Filipe Manana 1-1/+1
2023-10-12btrfs: reformat remaining kdoc style commentsGravatar David Sterba 1-3/+3
2023-10-12btrfs: update comment for reservation of metadata space for delayed itemsGravatar Filipe Manana 1-1/+1
2023-10-11Merge tag 'for-6.6-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-1/+1
2023-10-11btrfs: add __counted_by for struct btrfs_delayed_item and use struct_size()Gravatar Gustavo A. R. Silva 1-1/+1
2023-09-12Merge tag 'for-6.6-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-33/+71
2023-09-08btrfs: assert delayed node locked when removing delayed itemGravatar Filipe Manana 1-4/+8
2023-09-08btrfs: remove BUG() after failure to insert delayed dir index itemGravatar Filipe Manana 1-27/+47
2023-09-08btrfs: improve error message after failure to add delayed dir index itemGravatar Filipe Manana 1-3/+4
2023-09-08btrfs: fix lockdep splat and potential deadlock after failure running delayed...Gravatar Filipe Manana 1-3/+16
2023-08-28Merge tag 'for-6.6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdav...Gravatar Linus Torvalds 1-3/+0
2023-08-28Merge tag 'v6.6-vfs.ctime' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 1-4/+4
2023-08-21btrfs: remove pointless empty list check when reading delayed dir indexesGravatar Filipe Manana 1-3/+0
2023-08-14btrfs: fix infinite directory readsGravatar Filipe Manana 1-2/+3
2023-07-13btrfs: convert to ctime accessor functionsGravatar Jeff Layton 1-4/+4
2023-03-06btrfs: handle btrfs_del_item errors in __btrfs_update_delayed_inodeGravatar void0red 1-1/+1
2022-12-05btrfs: pass btrfs_inode to btrfs_inode_unlockGravatar David Sterba 1-1/+1
2022-12-05btrfs: pass btrfs_inode to btrfs_inode_lockGravatar David Sterba 1-1/+1
2022-12-05btrfs: move file-item prototypes into their own headerGravatar Josef Bacik 1-0/+1
2022-12-05btrfs: extend btrfs_dir_item type to store encryption statusGravatar Omar Sandoval 1-3/+3
2022-12-05btrfs: move accessor helpers into accessors.hGravatar Josef Bacik 1-0/+1
2022-12-05btrfs: move BTRFS_FS_STATE* definitions and helpers to fs.hGravatar Josef Bacik 1-1/+2
2022-12-05btrfs: move the printk helpers out of ctree.hGravatar Josef Bacik 1-0/+1
2022-12-05btrfs: move flush related definitions to space-info.hGravatar Josef Bacik 1-0/+1
2022-09-26btrfs: use delayed items when logging a directoryGravatar Filipe Manana 1-0/+112
2022-09-26btrfs: shrink the size of struct btrfs_delayed_itemGravatar Filipe Manana 1-19/+18
2022-09-26btrfs: remove unused logic when looking up delayed itemsGravatar Filipe Manana 1-42/+3
2022-09-26btrfs: store index number instead of key in struct btrfs_delayed_itemGravatar Filipe Manana 1-52/+54
2022-09-26btrfs: remove root argument from btrfs_delayed_item_reserve_metadata()Gravatar Filipe Manana 1-5/+3
2022-07-25btrfs: batch up release of reserved metadata for delayed items used for deletionGravatar Nikolay Borisov 1-1/+16
2022-07-25btrfs: do not batch insert non-consecutive dir indexes during log replayGravatar Josef Bacik 1-2/+33
2022-07-25btrfs: reduce amount of reserved metadata for delayed item insertionGravatar Filipe Manana 1-14/+143
2022-07-25btrfs: set delayed item type when initializing itGravatar Filipe Manana 1-22/+8
2022-07-25btrfs: do not BUG_ON() on failure to reserve metadata for delayed itemGravatar Filipe Manana 1-3/+6
2022-07-25btrfs: improve batch insertion of delayed dir index itemsGravatar Filipe Manana 1-15/+9
2022-07-25btrfs: assert that delayed item is a dir index item when adding itGravatar Filipe Manana 1-3/+5
2022-07-25btrfs: improve batch deletion of delayed dir index itemsGravatar Filipe Manana 1-35/+25
2022-07-25btrfs: refactor the delayed item deletion entry pointGravatar Filipe Manana 1-32/+39
2022-07-25btrfs: deal with deletion errors when deleting delayed itemsGravatar Filipe Manana 1-1/+3
2022-07-25btrfs: add assertions when deleting batches of delayed itemsGravatar Filipe Manana 1-8/+16
2022-07-15Revert "btrfs: turn delayed_nodes_tree into an XArray"Gravatar David Sterba 1-39/+45
2022-05-16btrfs: turn delayed_nodes_tree into an XArrayGravatar Gabriel Niebler 1-45/+39