The patch titled Subject: mm-treewide-redefine-max_order-sanely-fix.txt has been added to the -mm mm-unstable branch. Its filename is mm-treewide-redefine-max_order-sanely-fix.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-treewide-redefine-max_order-sanely-fix.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: "Kirill A. Shutemov" <kirill@xxxxxxxxxxxxx> Subject: mm-treewide-redefine-max_order-sanely-fix.txt Date: Wed, 15 Mar 2023 18:38:00 +0300 fix min() warning Link: https://lkml.kernel.org/r/20230315153800.32wib3n5rickolvh@box Reported-by: kernel test robot <lkp@xxxxxxxxx> Link: https://lore.kernel.org/oe-kbuild-all/202303152343.D93IbJmn-lkp@xxxxxxxxx/ Signed-off-by: "Kirill A. Shutemov" <kirill@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memblock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/memblock.c~mm-treewide-redefine-max_order-sanely-fix +++ a/mm/memblock.c @@ -2043,7 +2043,7 @@ static void __init __free_pages_memory(u int order; while (start < end) { - order = min(MAX_ORDER, __ffs(start)); + order = min_t(int, MAX_ORDER, __ffs(start)); while (start + (1UL << order) > end) order--; _ Patches currently in -mm which might be from kirill@xxxxxxxxxxxxx are mm-treewide-redefine-max_order-sanely-fix.patch