The patch titled Subject: include/linux/types.h: use "unsigned int" instead of "unsigned" has been added to the -mm tree. Its filename is include-linux-typesh-use-unsigned-int-instead-of-unsigned.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/include-linux-typesh-use-unsigned-int-instead-of-unsigned.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/include-linux-typesh-use-unsigned-int-instead-of-unsigned.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: WangBo <wdjjwb@xxxxxxx> Subject: include/linux/types.h: use "unsigned int" instead of "unsigned" Use "unsigned int" instead of "unsigned" ,it make code more clear. Link: http://lkml.kernel.org/r/1551354739-6648-1-git-send-email-wdjjwb@xxxxxxx Signed-off-by: WangBo <wang.bo116@xxxxxxxxxx> Reviewed-by: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/include/linux/types.h~include-linux-typesh-use-unsigned-int-instead-of-unsigned +++ a/include/linux/types.h @@ -155,9 +155,9 @@ typedef u64 dma_addr_t; typedef u32 dma_addr_t; #endif -typedef unsigned __bitwise gfp_t; -typedef unsigned __bitwise slab_flags_t; -typedef unsigned __bitwise fmode_t; +typedef unsigned int __bitwise gfp_t; +typedef unsigned int __bitwise slab_flags_t; +typedef unsigned int __bitwise fmode_t; #ifdef CONFIG_PHYS_ADDR_T_64BIT typedef u64 phys_addr_t; _ Patches currently in -mm which might be from wdjjwb@xxxxxxx are include-linux-typesh-use-unsigned-int-instead-of-unsigned.patch