linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] x86: respect memory size limits
@ 2019-01-30  8:22 Juergen Gross
  2019-01-30  8:22 ` [PATCH v2 1/2] x86: respect memory size limiting via mem= parameter Juergen Gross
  2019-01-30  8:22 ` [PATCH v2 2/2] x86/xen: dont add memory above max allowed allocation Juergen Gross
  0 siblings, 2 replies; 10+ messages in thread
From: Juergen Gross @ 2019-01-30  8:22 UTC (permalink / raw)
  To: linux-kernel, xen-devel, x86, linux-mm
  Cc: boris.ostrovsky, sstabellini, hpa, tglx, mingo, bp, Juergen Gross

On a customer system running Xen a boot problem was observed due to
the kernel not respecting the memory size limit imposed by the Xen
hypervisor.

During analysis I found the same problem should be able to occur on
bare metal in case the memory would be limited via the "mem=" boot
parameter.

The system this problem has been observed on has tons of memory
added via PCI. So while in the E820 map the not to be used memory has
been wiped out the additional PCI memory is detected during ACPI scan
and it is added via __add_memory().

This small series tries to repair the issue by testing the imposed
memory limit during the memory hotplug process and refusing to add it
in case the limit is being violated.

I've chosen to refuse adding the complete memory chunk in case the
limit is reached instead of adding only some of the memory, as I
thought this would result in less problems (e.g. avoiding to add
only parts of a 128MB memory bar which might be difficult to remove
later).

Changes in V2:
- patch 1: set initial allowed size to U64_MAX instead -1
- patch 2: set initial allowed size to end of E820 RAM

Juergen Gross (2):
  x86: respect memory size limiting via mem= parameter
  x86/xen: dont add memory above max allowed allocation

 arch/x86/kernel/e820.c         |  5 +++++
 arch/x86/xen/setup.c           | 10 ++++++++++
 drivers/xen/xen-balloon.c      |  6 ++++++
 include/linux/memory_hotplug.h |  2 ++
 mm/memory_hotplug.c            |  6 ++++++
 5 files changed, 29 insertions(+)

-- 
2.16.4


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-02-11 12:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-30  8:22 [PATCH v2 0/2] x86: respect memory size limits Juergen Gross
2019-01-30  8:22 ` [PATCH v2 1/2] x86: respect memory size limiting via mem= parameter Juergen Gross
2019-02-11 12:06   ` Ingo Molnar
2019-02-11 12:14     ` [Xen-devel] " Juergen Gross
2019-02-11 12:23       ` Ingo Molnar
2019-02-11 12:35         ` Juergen Gross
2019-01-30  8:22 ` [PATCH v2 2/2] x86/xen: dont add memory above max allowed allocation Juergen Gross
2019-01-30 10:59   ` William Kucharski
2019-02-01 18:46   ` Boris Ostrovsky
2019-02-07  6:32     ` Juergen Gross

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).