Message ID | f618945b86f4bba6037bd4917a4b461503183f0e.1455556900.git.dsterba@suse.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
thanks. Reviewed-by: Anand Jain <anand.jain@oracle.com> 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 <dsterba@suse.com> > --- > 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 majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
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;
Underscores are for special functions, use the full prefix for better stacktrace recognition. Signed-off-by: David Sterba <dsterba@suse.com> --- fs/btrfs/volumes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)