Re: [PATCH 01/13] btrfs: add ioctls to query/change feature bits online

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> +static int btrfs_ioctl_get_supported_features(struct file *file,
> +					      void __user *arg)
> +{
> +	struct btrfs_ioctl_feature_flags features[3];
> +
> +	features[0].compat_flags = BTRFS_FEATURE_COMPAT_SUPP;
> +	features[0].compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_SUPP;
> +	features[0].incompat_flags = BTRFS_FEATURE_INCOMPAT_SUPP;
> +
> +	features[1].compat_flags = BTRFS_FEATURE_COMPAT_SAFE_SET;
> +	features[1].compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_SAFE_SET;
> +	features[1].incompat_flags = BTRFS_FEATURE_INCOMPAT_SAFE_SET;
> +
> +	features[2].compat_flags = BTRFS_FEATURE_COMPAT_SAFE_CLEAR;
> +	features[2].compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR;
> +	features[2].incompat_flags = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR;
> +
> +	if (copy_to_user(arg, &features, sizeof(features)))
> +		return -EFAULT;

If these are all constants shouldn't that just copy out of a static
built flags array?

#define cpp4ever(suff) \
	BTRFS_FEATURE_COMPAT_#suff, BTRFS_FEATURE_COMPAT_RO_#suff, \
	BTRFS_FEATURE_INCOMPAT_#suff

	static struct btrfs_ioctl_feature_flags features[3] = {
		{ cpp4ever(SUPP) }, { cpp4ever(SAFE_SET) },
		{ cpp4ever(SAFE_CLEAR) },
	};

	if (copy_to_user(arg, &features, sizeof(features)))
		return -EFAULT;

?

- z
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Filesystem Development]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux