[PATCH] btrfs: update outdated comment

Julia Lawall posted 1 patch 1 month, 1 week ago
fs/btrfs/free-space-tree.c |    6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
[PATCH] btrfs: update outdated comment
Posted by Julia Lawall 1 month, 1 week ago
The function add_block_group_free_space() was renamed
btrfs_add_block_group_free_space() by commit 6fc5ef782988 ("btrfs:
add btrfs prefix to free space tree exported functions").  Update
the comment accordingly.

Do some reorganization of the next few lines to keep the comment
within 80 characters

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>

---
 fs/btrfs/free-space-tree.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fs/btrfs/free-space-tree.c b/fs/btrfs/free-space-tree.c
index 1ad2ad384b9e..0e353d0aab13 100644
--- a/fs/btrfs/free-space-tree.c
+++ b/fs/btrfs/free-space-tree.c
@@ -1396,9 +1396,9 @@ static int __add_block_group_free_space(struct btrfs_trans_handle *trans,
 	 * can use multiple transactions, every time btrfs_end_transaction() is
 	 * called at btrfs_rebuild_free_space_tree() we finish the creation of
 	 * new block groups by calling btrfs_create_pending_block_groups(), and
-	 * that in turn calls us, through add_block_group_free_space(), to add
-	 * a free space info item and a free space extent item for the block
-	 * group.
+	 * that in turn calls us, through btrfs_add_block_group_free_space(),
+	 * to add a free space info item and a free space extent item for the
+	 * block group.
 	 *
 	 * Then later btrfs_rebuild_free_space_tree() may find such new block
 	 * groups and processes them with populate_free_space_tree(), which can
Re: [PATCH] btrfs: update outdated comment
Posted by David Sterba 1 month ago
On Tue, Dec 30, 2025 at 05:32:45PM +0100, Julia Lawall wrote:
> The function add_block_group_free_space() was renamed
> btrfs_add_block_group_free_space() by commit 6fc5ef782988 ("btrfs:
> add btrfs prefix to free space tree exported functions").  Update
> the comment accordingly.
> 
> Do some reorganization of the next few lines to keep the comment
> within 80 characters
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>

Added to for-next, thanks.