Re: [PATCH v2] btrfs: fix bare unsigned declarations

2018-02-23 Thread David Sterba
On Thu, Feb 15, 2018 at 01:13:00AM +0800, Anand Jain wrote: > 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. > >

[PATCH v2] btrfs: fix bare unsigned declarations

2018-02-14 Thread Anand Jain
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 --- v1->v2: Update change