Commit 7000babd authored by Jiapeng Chong's avatar Jiapeng Chong Committed by David Sterba
Browse files

btrfs: assign proper values to a bool variable in dev_extent_hole_check_zoned



Fix the following coccicheck warnings:

./fs/btrfs/volumes.c:1462:10-11: WARNING: return of 0/1 in function
'dev_extent_hole_check_zoned' with return type bool.

Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 2ce73c63
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1458,8 +1458,8 @@ static bool dev_extent_hole_check_zoned(struct btrfs_device *device,
		/* Given hole range was invalid (outside of device) */
		if (ret == -ERANGE) {
			*hole_start += *hole_size;
			*hole_size = 0;
			return 1;
			*hole_size = false;
			return true;
		}

		*hole_start += zone_size;