]> git.baikalelectronics.ru Git - kernel.git/commit
x86: respect memory size limiting via mem= parameter
authorJuergen Gross <jgross@suse.com>
Thu, 14 Feb 2019 10:42:39 +0000 (11:42 +0100)
committerJuergen Gross <jgross@suse.com>
Mon, 18 Feb 2019 05:50:34 +0000 (06:50 +0100)
commit3aa126e37dee44a24279b3279264b03c4497fe20
tree67ddf0b7850cf8fa134d97cf00ba7647bf627591
parent4552aeb882fd657165bdacb17c39ccf70c3cf425
x86: respect memory size limiting via mem= parameter

When limiting memory size via kernel parameter "mem=" this should be
respected even in case of memory made accessible via a PCI card.

Today this kind of memory won't be made usable in initial memory
setup as the memory won't be visible in E820 map, but it might be
added when adding PCI devices due to corresponding ACPI table entries.

Not respecting "mem=" can be corrected by adding a global max_mem_size
variable set by parse_memopt() which will result in rejecting adding
memory areas resulting in a memory size above the allowed limit.

Signed-off-by: Juergen Gross <jgross@suse.com>
Acked-by: Ingo Molnar <mingo@kernel.org>
Reviewed-by: William Kucharski <william.kucharski@oracle.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
arch/x86/kernel/e820.c
include/linux/memory_hotplug.h
mm/memory_hotplug.c