Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1529b8f9 authored by Damien Le Moal's avatar Damien Le Moal Committed by Jaegeuk Kim
Browse files

f2fs: Check zoned block feature for host-managed zoned block devices



commit d1b959c8770260b611b9a1f0c5e8b12b7cb5b9d2 upstream.

The F2FS_FEATURE_BLKZONED feature indicates that the drive was formatted
 with zone alignment optimization. This is optional for host-aware
devices, but mandatory for host-managed zoned block devices.
So check that the feature is set in this latter case.

Signed-off-by: default avatarDamien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 22bbc1ef
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -1639,6 +1639,26 @@ try_onemore:
	sb->s_fs_info = sbi;
	sbi->raw_super = raw_super;

	/*
	 * The BLKZONED feature indicates that the drive was formatted with
	 * zone alignment optimization. This is optional for host-aware
	 * devices, but mandatory for host-managed zoned block devices.
	 */
#ifndef CONFIG_BLK_DEV_ZONED
	if (f2fs_sb_mounted_blkzoned(sb)) {
		f2fs_msg(sb, KERN_ERR,
			 "Zoned block device support is not enabled\n");
		goto free_sb_buf;
	}
#else
	if (bdev_zoned_model(sb->s_bdev) == BLK_ZONED_HM &&
	    !f2fs_sb_mounted_blkzoned(sb)) {
		f2fs_msg(sb, KERN_ERR,
			 "Zoned block device feature not enabled\n");
		goto free_sb_buf;
	}
#endif

	default_options(sbi);
	/* parse mount options */
	options = kstrdup((const char *)data, GFP_KERNEL);