diff options
author | Nathan Chancellor <nathan@kernel.org> | 2022-03-24 08:36:45 -0700 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2022-04-06 00:49:15 +0200 |
commit | 6d4a6b515c39f1f8763093e0f828959b2fbc2f45 (patch) | |
tree | cb614c89da0f95200842a9c3eb8d31fab9b5a480 /fs/fuse | |
parent | 9435be734ae9de020072bd4443d46e02d92564d1 (diff) |
btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups()
Clang's version of -Wunused-but-set-variable recently gained support for
unary operations, which reveals two unused variables:
fs/btrfs/block-group.c:2949:6: error: variable 'num_started' set but not used [-Werror,-Wunused-but-set-variable]
int num_started = 0;
^
fs/btrfs/block-group.c:3116:6: error: variable 'num_started' set but not used [-Werror,-Wunused-but-set-variable]
int num_started = 0;
^
2 errors generated.
These variables appear to be unused from their introduction, so just
remove them to silence the warnings.
Fixes: c9dc4c657850 ("Btrfs: two stage dirty block group writeout")
Fixes: 1bbc621ef284 ("Btrfs: allow block group cache writeout outside critical section in commit")
CC: stable@vger.kernel.org # 5.4+
Link: https://github.com/ClangBuiltLinux/linux/issues/1614
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/fuse')
0 files changed, 0 insertions, 0 deletions