Re: [PATCH 10/15] btrfs: rename __check_raid_min_devices

2016-02-16 Thread Anand Jain


 thanks.

Reviewed-by: Anand Jain 


On 02/16/2016 01:34 AM, David Sterba wrote:

Underscores are for special functions, use the full prefix for better
stacktrace recognition.

Signed-off-by: David Sterba 
---
  fs/btrfs/volumes.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 20af20b0eaee..4fa4a836a072 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -1705,7 +1705,7 @@ static int btrfs_rm_dev_item(struct btrfs_root *root,
return ret;
  }

-static int __check_raid_min_devices(struct btrfs_fs_info *fs_info)
+static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info)
  {
u64 all_avail;
u64 num_devices;
@@ -1760,7 +1760,7 @@ int btrfs_rm_device(struct btrfs_root *root, char 
*device_path, u64 devid)

mutex_lock(&uuid_mutex);

-   ret = __check_raid_min_devices(root->fs_info);
+   ret = btrfs_check_raid_min_devices(root->fs_info);
if (ret)
goto out;



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


[PATCH 10/15] btrfs: rename __check_raid_min_devices

2016-02-15 Thread David Sterba
Underscores are for special functions, use the full prefix for better
stacktrace recognition.

Signed-off-by: David Sterba 
---
 fs/btrfs/volumes.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 20af20b0eaee..4fa4a836a072 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -1705,7 +1705,7 @@ static int btrfs_rm_dev_item(struct btrfs_root *root,
return ret;
 }
 
-static int __check_raid_min_devices(struct btrfs_fs_info *fs_info)
+static int btrfs_check_raid_min_devices(struct btrfs_fs_info *fs_info)
 {
u64 all_avail;
u64 num_devices;
@@ -1760,7 +1760,7 @@ int btrfs_rm_device(struct btrfs_root *root, char 
*device_path, u64 devid)
 
mutex_lock(&uuid_mutex);
 
-   ret = __check_raid_min_devices(root->fs_info);
+   ret = btrfs_check_raid_min_devices(root->fs_info);
if (ret)
goto out;
 
-- 
2.7.1

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