From: Anand Jain <anand.jain@oracle.com>
To: Josef Bacik <josef@toxicpanda.com>,
linux-btrfs@vger.kernel.org, kernel-team@fb.com
Subject: Re: [PATCH v2 6/7] btrfs: unify common code for the v1 and v2 versions of device remove
Date: Wed, 25 Aug 2021 09:19:26 +0800 [thread overview]
Message-ID: <f18a49bb-46db-bff5-d88e-3f5e95e899d6@oracle.com> (raw)
In-Reply-To: <2107b5db383aa3dfb54a30e5b0de015be1ff6d1f.1627419595.git.josef@toxicpanda.com>
On 28/07/2021 05:01, Josef Bacik wrote:
> These things share a lot of common code, v2 simply allows you to specify
> devid. Abstract out this common code and use the helper by both the v1
> and v2 interfaces to save us some lines of code.
>
> Signed-off-by: Josef Bacik <josef@toxicpanda.com>
> ---
> fs/btrfs/ioctl.c | 99 +++++++++++++++++++-----------------------------
> 1 file changed, 38 insertions(+), 61 deletions(-)
>
> diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
> index fabbfdfa56f5..e3a7e8544609 100644
> --- a/fs/btrfs/ioctl.c
> +++ b/fs/btrfs/ioctl.c
> @@ -3200,15 +3200,14 @@ static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
> return ret;
> }
>
> -static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
> +static long btrfs_do_device_removal(struct file *file, const char *path,
> + u64 devid, bool cancel)
> {
> struct inode *inode = file_inode(file);
> struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
> - struct btrfs_ioctl_vol_args_v2 *vol_args;
> struct block_device *bdev = NULL;
> fmode_t mode;
> int ret;
> - bool cancel = false;
>
> if (!capable(CAP_SYS_ADMIN))
> return -EPERM;
> @@ -3217,11 +3216,37 @@ static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
> if (ret)
> return ret;
>
> - vol_args = memdup_user(arg, sizeof(*vol_args));
> - if (IS_ERR(vol_args)) {
> - ret = PTR_ERR(vol_args);
> - goto err_drop;
> + ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
> + cancel);
> + if (ret)
> + goto out;
> +
> + /* Exclusive operation is now claimed */
> + ret = btrfs_rm_device(fs_info, path, devid, &bdev, &mode);
> + btrfs_exclop_finish(fs_info);
> +
> + if (!ret) {
> + if (path)
> + btrfs_info(fs_info, "device deleted: %s", path);
> + else
> + btrfs_info(fs_info, "device deleted: id %llu", devid);
> }
> +out:
> + mnt_drop_write_file(file);
> + if (bdev)
> + blkdev_put(bdev, mode);
> + return ret;
> +}
> +
> +static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
> +{
> + struct btrfs_ioctl_vol_args_v2 *vol_args;
> + int ret = 0;
> + bool cancel = false;
> +
> + vol_args = memdup_user(arg, sizeof(*vol_args));
> + if (IS_ERR(vol_args))
> + return PTR_ERR(vol_args);
>
> if (vol_args->flags & ~BTRFS_DEVICE_REMOVE_ARGS_MASK) {
> ret = -EOPNOTSUPP;
> @@ -3232,79 +3257,31 @@ static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
> strcmp("cancel", vol_args->name) == 0)
> cancel = true;
>
> - ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
> - cancel);
> - if (ret)
> - goto out;
> - /* Exclusive operation is now claimed */
> -
> if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
> - ret = btrfs_rm_device(fs_info, NULL, vol_args->devid, &bdev,
> - &mode);
> + ret = btrfs_do_device_removal(file, NULL, vol_args->devid,
> + cancel);
> else
> - ret = btrfs_rm_device(fs_info, vol_args->name, 0, &bdev,
> - &mode);
> -
> - btrfs_exclop_finish(fs_info);
> -
> - if (!ret) {
> - if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
> - btrfs_info(fs_info, "device deleted: id %llu",
> - vol_args->devid);
> - else
> - btrfs_info(fs_info, "device deleted: %s",
> - vol_args->name);
> - }
> + ret = btrfs_do_device_removal(file, vol_args->name, 0, cancel);
> out:
> kfree(vol_args);
> -err_drop:
> - mnt_drop_write_file(file);
> - if (bdev)
> - blkdev_put(bdev, mode);
> return ret;
> }
>
> static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
> {
> - struct inode *inode = file_inode(file);
> - struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
> struct btrfs_ioctl_vol_args *vol_args;
> - struct block_device *bdev = NULL;
> - fmode_t mode;
> int ret;
> bool cancel;
>
> - if (!capable(CAP_SYS_ADMIN))
> - return -EPERM;
> -
> - ret = mnt_want_write_file(file);
> - if (ret)
> - return ret;
> -
> vol_args = memdup_user(arg, sizeof(*vol_args));
> - if (IS_ERR(vol_args)) {
> - ret = PTR_ERR(vol_args);
> - goto out_drop_write;
> - }
> + if (IS_ERR(vol_args))
> + return PTR_ERR(vol_args);
> vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
> cancel = (strcmp("cancel", vol_args->name) == 0);
>
> - ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
> - cancel);
> - if (ret == 0) {
> - ret = btrfs_rm_device(fs_info, vol_args->name, 0, &bdev,
> - &mode);
> - if (!ret)
> - btrfs_info(fs_info, "disk deleted %s", vol_args->name);
> - btrfs_exclop_finish(fs_info);
> - }
> + ret = btrfs_do_device_removal(file, vol_args->name, 0, cancel);
>
> kfree(vol_args);
> -out_drop_write:
> - mnt_drop_write_file(file);
> -
> - if (bdev)
> - blkdev_put(bdev, mode);
> return ret;
> }
>
>
Looks much better now.
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Thanks.
next prev parent reply other threads:[~2021-08-25 1:19 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-27 21:01 [PATCH v2 0/7] Josef Bacik
2021-07-27 21:01 ` [PATCH v2 1/7] btrfs: do not call close_fs_devices in btrfs_rm_device Josef Bacik
2021-09-01 8:13 ` Anand Jain
2021-07-27 21:01 ` [PATCH v2 2/7] btrfs: do not take the uuid_mutex " Josef Bacik
2021-09-01 12:01 ` Anand Jain
2021-09-01 17:08 ` David Sterba
2021-09-01 17:10 ` Josef Bacik
2021-09-01 19:49 ` Anand Jain
2021-09-02 12:58 ` David Sterba
2021-09-02 14:10 ` Josef Bacik
2021-09-17 14:33 ` David Sterba
2021-09-20 7:45 ` Anand Jain
2021-09-20 8:26 ` David Sterba
2021-09-20 9:41 ` Anand Jain
2021-09-23 4:33 ` Anand Jain
2021-09-21 11:59 ` Filipe Manana
2021-09-21 12:17 ` Filipe Manana
2021-09-22 15:33 ` Filipe Manana
2021-09-23 4:15 ` Anand Jain
2021-09-23 3:58 ` [PATCH] btrfs: drop lockdep assert in close_fs_devices() Anand Jain
2021-09-23 4:04 ` Anand Jain
2021-07-27 21:01 ` [PATCH v2 3/7] btrfs: do not read super look for a device path Josef Bacik
2021-08-25 2:00 ` Anand Jain
2021-09-27 15:32 ` Josef Bacik
2021-09-28 11:50 ` Anand Jain
2021-07-27 21:01 ` [PATCH v2 4/7] btrfs: update the bdev time directly when closing Josef Bacik
2021-08-25 0:35 ` Anand Jain
2021-09-02 12:16 ` David Sterba
2021-07-27 21:01 ` [PATCH v2 5/7] btrfs: delay blkdev_put until after the device remove Josef Bacik
2021-08-25 1:00 ` Anand Jain
2021-09-02 12:16 ` David Sterba
2021-07-27 21:01 ` [PATCH v2 6/7] btrfs: unify common code for the v1 and v2 versions of " Josef Bacik
2021-08-25 1:19 ` Anand Jain [this message]
2021-09-01 14:05 ` Nikolay Borisov
2021-07-27 21:01 ` [PATCH v2 7/7] btrfs: do not take the device_list_mutex in clone_fs_devices Josef Bacik
2021-08-24 22:08 ` Anand Jain
2021-09-01 13:35 ` Nikolay Borisov
2021-09-02 12:59 ` David Sterba
2021-09-17 15:06 ` [PATCH v2 0/7] David Sterba
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f18a49bb-46db-bff5-d88e-3f5e95e899d6@oracle.com \
--to=anand.jain@oracle.com \
--cc=josef@toxicpanda.com \
--cc=kernel-team@fb.com \
--cc=linux-btrfs@vger.kernel.org \
--subject='Re: [PATCH v2 6/7] btrfs: unify common code for the v1 and v2 versions of device remove' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.