Commit d46a05ed authored by David Sterba's avatar David Sterba
Browse files

btrfs: tests: handle fs_info allocation failure in extent_io tests



Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 75391f0d
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -392,6 +392,10 @@ static int test_eb_bitmaps(u32 sectorsize, u32 nodesize)
		? sectorsize * 4 : sectorsize;

	fs_info = btrfs_alloc_dummy_fs_info(len, len);
	if (!fs_info) {
		test_err("could not allocate fs_info");
		return -ENOMEM;
	}

	bitmap = kmalloc(len, GFP_KERNEL);
	if (!bitmap) {