Hi Andrew, One very small fix for this, I typo'd the function name... :)
Cheers, Lorenzo ----8<---- >From c2f9bc16a4ad705ac05571ac7b825d8aac5849d4 Mon Sep 17 00:00:00 2001 From: Lorenzo Stoakes <[email protected]> Date: Wed, 13 Aug 2025 15:08:36 +0100 Subject: [PATCH] fix typo Signed-off-by: Lorenzo Stoakes <[email protected]> Reported-by: kernel test robot <[email protected]> Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ --- arch/s390/mm/mmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/s390/mm/mmap.c b/arch/s390/mm/mmap.c index c884b580eb5e..547104ccc22a 100644 --- a/arch/s390/mm/mmap.c +++ b/arch/s390/mm/mmap.c @@ -185,7 +185,7 @@ void arch_pick_mmap_layout(struct mm_struct *mm, struct rlimit *rlim_stack) mm_flags_clear(MMF_TOPDOWN, mm); } else { mm->mmap_base = mmap_base(random_factor, rlim_stack); - mm_flag_set(MMF_TOPDOWN, mm); + mm_flags_set(MMF_TOPDOWN, mm); } } -- 2.50.1
