The patch titled Subject: mm: change type of cma_area_count to unsigned int has been added to the -mm mm-unstable branch. Its filename is mm-change-type-of-cma_area_count-to-unsigned-int.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-change-type-of-cma_area_count-to-unsigned-int.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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 via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Jiale Yang <295107659@xxxxxx> Subject: mm: change type of cma_area_count to unsigned int Date: Wed, 20 Nov 2024 11:01:35 +0000 Prefer 'unsigned int' over plain 'unsigned'. Also make it consistent with mm/cma.c Link: https://lkml.kernel.org/r/tencent_1E5E3AA25C261196D8C1F7097F130E382008@xxxxxx Signed-off-by: Jiale Yang <295107659@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/cma.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/cma.h~mm-change-type-of-cma_area_count-to-unsigned-int +++ a/mm/cma.h @@ -36,7 +36,7 @@ struct cma { }; extern struct cma cma_areas[MAX_CMA_AREAS]; -extern unsigned cma_area_count; +extern unsigned int cma_area_count; static inline unsigned long cma_bitmap_maxno(struct cma *cma) { _ Patches currently in -mm which might be from 295107659@xxxxxx are mm-change-type-of-cma_area_count-to-unsigned-int.patch