From: Filipe Manana Date: Mon, 16 Dec 2024 16:36:19 +0000 (+0000) Subject: btrfs: remove pointless comment from ctree.h X-Git-Tag: v6.14-rc1~207^2~84 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=de9c8265b763f98b4b8f7f13acf4888285ac5a47;p=thirdparty%2Flinux.git btrfs: remove pointless comment from ctree.h It's pointless to have a comment above the prototype declarations of btrfs_ctree_init() and btrfs_ctree_exit() mentioning that they are declared in ctree.c. This is from the old days when ctree.h was used to place anything that didn't fit in any other file. So remove it. Reviewed-by: Qu Wenruo Reviewed-by: Johannes Thumshirn Signed-off-by: Filipe Manana Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index cdf10cca81941..1096a80a64e7a 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -505,7 +505,6 @@ static inline u32 BTRFS_MAX_XATTR_SIZE(const struct btrfs_fs_info *info) return BTRFS_MAX_ITEM_SIZE(info) - sizeof(struct btrfs_dir_item); } -/* ctree.c */ int __init btrfs_ctree_init(void); void __cold btrfs_ctree_exit(void);