diff mbox

[16/16] btrfs: open code set_balance_control

Message ID fda7ab82f7fb52c213c72220ac965a66786eed1d.1522780026.git.dsterba@suse.com (mailing list archive)
State New, archived
Headers show

Commit Message

David Sterba April 3, 2018, 6:34 p.m. UTC
The helper is quite simple and I'd like to see the locking in the
caller.

Signed-off-by: David Sterba <dsterba@suse.com>
---
 fs/btrfs/volumes.c | 20 ++++----------------
 1 file changed, 4 insertions(+), 16 deletions(-)

Comments

Anand Jain April 9, 2018, 3:24 p.m. UTC | #1
On 04/04/2018 02:34 AM, David Sterba wrote:
> The helper is quite simple and I'd like to see the locking in the
> caller.
> 
> Signed-off-by: David Sterba <dsterba@suse.com>

For the version at:
  git://github.com/kdave/btrfs-devel dev/remove-volume-mutex

Reviewed-by: Anand Jain <anand.jain@oracle.com>

Thanks, Anand

> ---
>   fs/btrfs/volumes.c | 20 ++++----------------
>   1 file changed, 4 insertions(+), 16 deletions(-)
> 
> diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
> index e93c7ba44d06..db9f72c6af85 100644
> --- a/fs/btrfs/volumes.c
> +++ b/fs/btrfs/volumes.c
> @@ -3178,21 +3178,6 @@ static void update_balance_args(struct btrfs_balance_control *bctl)
>   	}
>   }
>   
> -/*
> - * Should be called with balance mutex held to protect against checking the
> - * balance status or progress. Same goes for reset_balance_state.
> - */
> -static void set_balance_control(struct btrfs_balance_control *bctl)
> -{
> -	struct btrfs_fs_info *fs_info = bctl->fs_info;
> -
> -	BUG_ON(fs_info->balance_ctl);
> -
> -	spin_lock(&fs_info->balance_lock);
> -	fs_info->balance_ctl = bctl;
> -	spin_unlock(&fs_info->balance_lock);
> -}
> -
>   /*
>    * Clear the balance status in fs_info and delete the balance item from disk.
>    */
> @@ -3878,7 +3863,10 @@ int btrfs_balance(struct btrfs_balance_control *bctl,
>   
>   	if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
>   		BUG_ON(ret == -EEXIST);
> -		set_balance_control(bctl);
> +		BUG_ON(fs_info->balance_ctl);
> +		spin_lock(&fs_info->balance_lock);
> +		fs_info->balance_ctl = bctl;
> +		spin_unlock(&fs_info->balance_lock);
>   	} else {
>   		BUG_ON(ret != -EEXIST);
>   		spin_lock(&fs_info->balance_lock);
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index e93c7ba44d06..db9f72c6af85 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -3178,21 +3178,6 @@  static void update_balance_args(struct btrfs_balance_control *bctl)
 	}
 }
 
-/*
- * Should be called with balance mutex held to protect against checking the
- * balance status or progress. Same goes for reset_balance_state.
- */
-static void set_balance_control(struct btrfs_balance_control *bctl)
-{
-	struct btrfs_fs_info *fs_info = bctl->fs_info;
-
-	BUG_ON(fs_info->balance_ctl);
-
-	spin_lock(&fs_info->balance_lock);
-	fs_info->balance_ctl = bctl;
-	spin_unlock(&fs_info->balance_lock);
-}
-
 /*
  * Clear the balance status in fs_info and delete the balance item from disk.
  */
@@ -3878,7 +3863,10 @@  int btrfs_balance(struct btrfs_balance_control *bctl,
 
 	if (!(bctl->flags & BTRFS_BALANCE_RESUME)) {
 		BUG_ON(ret == -EEXIST);
-		set_balance_control(bctl);
+		BUG_ON(fs_info->balance_ctl);
+		spin_lock(&fs_info->balance_lock);
+		fs_info->balance_ctl = bctl;
+		spin_unlock(&fs_info->balance_lock);
 	} else {
 		BUG_ON(ret != -EEXIST);
 		spin_lock(&fs_info->balance_lock);