diff options
author | Anand Jain <anand.jain@oracle.com> | 2016-03-24 13:48:14 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-04-28 11:59:13 +0300 |
commit | b5255456c529155730c837f8cfcea47e8feb85ca (patch) | |
tree | 5ef5e4e0dd7a914dd85337965a51b05270563bf1 /fs/btrfs/ioctl.c | |
parent | fc23c246d72d21385be115305d1cb85fcc34acad (diff) | |
download | linux-b5255456c529155730c837f8cfcea47e8feb85ca.tar.xz |
btrfs: refactor btrfs_dev_replace_start for reuse
A refactor patch, and avoids user input verification in the
btrfs_dev_replace_start(), and so this function can be reused.
Signed-off-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ioctl.c')
-rw-r--r-- | fs/btrfs/ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 65903ec5e1c0..36b1ed223509 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -4430,7 +4430,7 @@ static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg) 1)) { ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS; } else { - ret = btrfs_dev_replace_start(root, p); + ret = btrfs_dev_replace_by_ioctl(root, p); atomic_set( &root->fs_info->mutually_exclusive_operation_running, 0); |