]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
um: Update min_low_pfn to match changes in uml_reserved
authorTiwei Bie <tiwei.btw@antgroup.com>
Fri, 21 Feb 2025 04:18:55 +0000 (12:18 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 4 Jun 2025 12:37:00 +0000 (14:37 +0200)
[ Upstream commit e82cf3051e6193f61e03898f8dba035199064d36 ]

When uml_reserved is updated, min_low_pfn must also be updated
accordingly. Otherwise, min_low_pfn will not accurately reflect
the lowest available PFN.

Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com>
Link: https://patch.msgid.link/20250221041855.1156109-1-tiwei.btw@antgroup.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/um/kernel/mem.c

index 9242dc91d75193475cb105b4e6e6ab016f1a7a08..268a238f4f9cf7936d47cdf79c3236c86a8d6c74 100644 (file)
@@ -49,6 +49,7 @@ void __init mem_init(void)
        map_memory(brk_end, __pa(brk_end), uml_reserved - brk_end, 1, 1, 0);
        memblock_free(__pa(brk_end), uml_reserved - brk_end);
        uml_reserved = brk_end;
+       min_low_pfn = PFN_UP(__pa(uml_reserved));
 
        /* this will put all low memory onto the freelists */
        memblock_free_all();