Re: [PATCH] btrfs: fix bare unsigned declarations

2018-02-13 Thread David Sterba
On Tue, Feb 13, 2018 at 05:50:48PM +0800, Anand Jain wrote: > Kernel style prefers "unsigned int " over "unsigned " > and "signed int " over "signed ". The changelog does not match the changes, you're switching to u32. I agree u32 looks more suitable and consistent with the other changes. Please u

[PATCH] btrfs: fix bare unsigned declarations

2018-02-13 Thread Anand Jain
Kernel style prefers "unsigned int " over "unsigned " and "signed int " over "signed ". Signed-off-by: Anand Jain --- fs/btrfs/ctree.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 80d1d4d12f9d..c6de1a5281ca 100644 --- a/fs/btrf