Commit 17d202b9 authored by Anand Jain's avatar Anand Jain Committed by David Sterba
Browse files

btrfs: rename __btrfs_dev_replace_cancel()



Remove __ which is for the special functions.

Signed-off-by: default avatarAnand Jain <anand.jain@oracle.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 97282031
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -693,7 +693,7 @@ void btrfs_dev_replace_status(struct btrfs_fs_info *fs_info,
	btrfs_dev_replace_unlock(dev_replace, 0);
}

u64 __btrfs_dev_replace_cancel(struct btrfs_fs_info *fs_info)
u64 btrfs_dev_replace_cancel(struct btrfs_fs_info *fs_info)
{
	struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
	struct btrfs_device *tgt_device = NULL;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ int btrfs_dev_replace_start(struct btrfs_fs_info *fs_info,
		int read_src);
void btrfs_dev_replace_status(struct btrfs_fs_info *fs_info,
			      struct btrfs_ioctl_dev_replace_args *args);
u64 __btrfs_dev_replace_cancel(struct btrfs_fs_info *fs_info);
u64 btrfs_dev_replace_cancel(struct btrfs_fs_info *fs_info);
void btrfs_dev_replace_suspend_for_unmount(struct btrfs_fs_info *fs_info);
int btrfs_resume_dev_replace_async(struct btrfs_fs_info *fs_info);
int btrfs_dev_replace_is_ongoing(struct btrfs_dev_replace *dev_replace);
+1 −1
Original line number Diff line number Diff line
@@ -4429,7 +4429,7 @@ static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
		ret = 0;
		break;
	case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
		p->result = __btrfs_dev_replace_cancel(fs_info);
		p->result = btrfs_dev_replace_cancel(fs_info);
		ret = 0;
		break;
	default: