aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/tree-checker.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-05btrfs: tree-checker: dump the page status if hit something wrongGravatar Qu Wenruo 1-0/+6
2024-03-04btrfs: remove unused included headersGravatar David Sterba 1-2/+0
2024-01-18btrfs: tree-checker: fix inline ref size in error messagesGravatar Chung-Chiang Cheng 1-1/+1
2023-11-15btrfs: tree-checker: add type and sequence check for inline backrefsGravatar Qu Wenruo 1-0/+39
2023-10-12btrfs: add and use helpers for reading and writing last_trans_committedGravatar Filipe Manana 1-1/+1
2023-10-12btrfs: new inline ref storing owning subvol of data extentsGravatar Boris Burkov 1-0/+3
2023-10-12btrfs: tree-checker: add support for raid stripe treeGravatar Johannes Thumshirn 1-0/+42
2023-10-12btrfs: move btrfs_name_hash to dir-item.hGravatar Josef Bacik 1-0/+1
2023-08-12Merge tag 'for-6.5-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-0/+14
2023-08-10btrfs: reject invalid reloc tree root keys with stack dumpGravatar Qu Wenruo 1-0/+14
2023-06-26Merge tag 'for-6.5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdav...Gravatar Linus Torvalds 1-40/+112
2023-06-22btrfs: fix remaining u32 overflows when left shifting stripe_nrGravatar Qu Wenruo 1-2/+2
2023-06-19btrfs: move split_flags/combine_flags helpers to inode-item.hGravatar Josef Bacik 1-1/+1
2023-06-19btrfs: move btrfs_verify_level_key into tree-checker.cGravatar Josef Bacik 1-0/+58
2023-06-19btrfs: add __btrfs_check_node helperGravatar Josef Bacik 1-12/+17
2023-06-19btrfs: extend btrfs_leaf_check to return btrfs_tree_block_statusGravatar Josef Bacik 1-13/+23
2023-06-19btrfs: use btrfs_tree_block_status for leaf item errorsGravatar Josef Bacik 1-7/+12
2023-06-19btrfs: simplify btrfs_check_leaf_* helpers into a single helperGravatar Josef Bacik 1-13/+7
2023-04-17btrfs: reduce div64 calls by limiting the number of stripes of a chunk to u32Gravatar Qu Wenruo 1-0/+14
2022-12-05btrfs: pass the extent buffer for the btrfs_item_nr helpersGravatar Josef Bacik 1-2/+2
2022-12-05btrfs: move file_extent_item helpers into file-item.hGravatar Josef Bacik 1-0/+1
2022-12-05btrfs: extend btrfs_dir_item type to store encryption statusGravatar Omar Sandoval 1-1/+1
2022-12-05btrfs: move accessor helpers into accessors.hGravatar Josef Bacik 1-0/+1
2022-12-05btrfs: move the printk helpers out of ctree.hGravatar Josef Bacik 1-0/+1
2022-12-05btrfs: move fs wide helpers out of ctree.hGravatar Josef Bacik 1-0/+1
2022-08-17btrfs: tree-checker: check for overlapping extent itemsGravatar Josef Bacik 1-2/+23
2022-05-16btrfs: tree-checker: check extent buffer owner against owner rootidGravatar Qu Wenruo 1-0/+55
2022-03-14btrfs: add support for multiple global rootsGravatar Josef Bacik 1-2/+19
2022-03-14btrfs: tree-checker: don't fail on empty extent roots for extent tree v2Gravatar Josef Bacik 1-1/+13
2022-03-02btrfs: tree-checker: use u64 for item data end to avoid overflowGravatar Su Yue 1-9/+9
2022-01-31btrfs: tree-checker: check item_size for dev_itemGravatar Su Yue 1-0/+8
2022-01-31btrfs: tree-checker: check item_size for inode_itemGravatar Su Yue 1-0/+7
2022-01-03btrfs: rename btrfs_item_end_nr to btrfs_item_data_endGravatar Josef Bacik 1-4/+4
2022-01-03btrfs: drop the _nr from the item helpersGravatar Josef Bacik 1-24/+24
2021-08-23btrfs: add ro compat flags to inodesGravatar Boris Burkov 1-4/+13
2021-08-23btrfs: tree-checker: add missing stripe checks for raid1c3/4 profilesGravatar David Sterba 1-0/+4
2021-08-23btrfs: tree-checker: use table values for stripe checksGravatar David Sterba 1-6/+11
2021-04-19btrfs: tree-checker: check for BTRFS_BLOCK_FLAG_FULL_BACKREF being set improp...Gravatar Josef Bacik 1-0/+5
2021-02-22btrfs: tree-checker: do not error out if extent ref hash doesn't matchGravatar Josef Bacik 1-12/+4
2021-01-07btrfs: tree-checker: check if chunk item end overflowsGravatar Su Yue 1-0/+7
2020-12-08btrfs: tree-checker: annotate all error branches as unlikelyGravatar David Sterba 1-160/+173
2020-12-08btrfs: switch cached fs_info::csum_size from u16 to u32Gravatar David Sterba 1-1/+1
2020-12-08btrfs: use cached value of fs_info::csum_size everywhereGravatar David Sterba 1-1/+1
2020-12-08btrfs: add set/get accessors for root_item::drop_levelGravatar David Sterba 1-2/+2
2020-11-23btrfs: tree-checker: add missing returns after data_ref alignment checksGravatar David Sterba 1-0/+2
2020-11-13btrfs: tree-checker: add missing return after error in root_itemGravatar Daniel Xu 1-0/+1
2020-10-26btrfs: tree-checker: validate number of chunk stripes and parityGravatar Daniel Xu 1-0/+18
2020-10-07btrfs: tree-checker: fix false alert caused by legacy btrfs root itemGravatar Qu Wenruo 1-5/+12
2020-08-27btrfs: tree-checker: fix the error message for transid errorGravatar Qu Wenruo 1-1/+1
2020-05-25btrfs: tree-checker: remove duplicate definition of 'inode_item_err'Gravatar Zheng Wei 1-4/+0