From d612ac59efc3b57858f310c8471d7ee2779658c9 Mon Sep 17 00:00:00 2001 From: Anand Jain Date: Mon, 26 Feb 2018 16:46:05 +0800 Subject: btrfs: unify types for metadata_ratio and data_chunk_allocations We have btrfs_fs_info::data_chunk_allocations and btrfs_fs_info::metadata_ratio declared as unsigned which would be unsinged int and kernel style prefers unsigned int over bare unsigned. So this patch changes them to u32. Signed-off-by: Anand Jain Signed-off-by: David Sterba --- fs/btrfs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs/btrfs/super.c') diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 1dd2e785918c..defaccde8d16 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -1737,7 +1737,7 @@ static int btrfs_remount(struct super_block *sb, int *flags, char *data) unsigned long old_compress_type = fs_info->compress_type; u64 old_max_inline = fs_info->max_inline; u32 old_thread_pool_size = fs_info->thread_pool_size; - unsigned int old_metadata_ratio = fs_info->metadata_ratio; + u32 old_metadata_ratio = fs_info->metadata_ratio; int ret; sync_filesystem(sb); -- cgit v1.2.3