diff options
| author | Filipe Manana <fdmanana@suse.com> | 2025-05-31 15:56:46 +0100 |
|---|---|---|
| committer | David Sterba <dsterba@suse.com> | 2025-07-21 23:53:30 +0200 |
| commit | 41e4ea0bf5558c03c8e7e3fc45ddf61da00e7c80 (patch) | |
| tree | feeeecb907f5d1c57911b427072b33104a18d457 /fs/btrfs/inode.c | |
| parent | 4106eb9bdae662e6ba14f1b55a33c8a2489ff86b (diff) | |
btrfs: make btrfs_readdir_delayed_dir_index() return a bool instead
There's no need to return errors, all we do is return 1 or 0 depending
on whether we should or should not stop iterating over delayed dir
indexes. So change the function to return bool instead of an int.
Reviewed-by: Boris Burkov <boris@bur.io>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/inode.c')
| -rw-r--r-- | fs/btrfs/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 474cb40a42f7..cbc95bceb7ff 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -6170,8 +6170,7 @@ again: if (ret) goto nopos; - ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list); - if (ret) + if (btrfs_readdir_delayed_dir_index(ctx, &ins_list)) goto nopos; /* |