diff options
author | Ruan Jinjie <ruanjinjie@huawei.com> | 2023-08-10 05:00:22 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2023-08-21 14:54:46 +0200 |
commit | 84af994b85b89ae405b8ea930653543bc5b864d3 (patch) | |
tree | 31e462d652433af7046ba2d284c1da90ab4d5ff7 /fs/btrfs/tree-log.c | |
parent | btrfs: handle errors properly in update_inline_extent_backref() (diff) | |
download | linux-84af994b85b89ae405b8ea930653543bc5b864d3.tar.xz linux-84af994b85b89ae405b8ea930653543bc5b864d3.zip |
btrfs: use LIST_HEAD() to initialize the list_head
Use LIST_HEAD() to initialize the list_head instead of open-coding it.
Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to '')
-rw-r--r-- | fs/btrfs/tree-log.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index 8ad7e7e38d18..b9229c08164f 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c @@ -4841,13 +4841,11 @@ static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans, struct btrfs_ordered_extent *ordered; struct btrfs_ordered_extent *tmp; struct extent_map *em, *n; - struct list_head extents; + LIST_HEAD(extents); struct extent_map_tree *tree = &inode->extent_tree; int ret = 0; int num = 0; - INIT_LIST_HEAD(&extents); - write_lock(&tree->lock); list_for_each_entry_safe(em, n, &tree->modified_extents, list) { |