]> git.baikalelectronics.ru Git - kernel.git/commit
xen: let alloc_xenballooned_pages() fail if not enough memory free
authorJuergen Gross <jgross@suse.com>
Wed, 19 Jun 2019 09:00:56 +0000 (11:00 +0200)
committerJuergen Gross <jgross@suse.com>
Thu, 18 Jul 2019 04:44:24 +0000 (06:44 +0200)
commitd6f0df1b0e3dfba6c7b3e4b4644be95c009d86c2
tree0bf89d34e5290ae34773a390fea85b546772b625
parentb67f225a5b971f079ccbe244e00ceee43204f185
xen: let alloc_xenballooned_pages() fail if not enough memory free

Instead of trying to allocate pages with GFP_USER in
add_ballooned_pages() check the available free memory via
si_mem_available(). GFP_USER is far less limiting memory exhaustion
than the test via si_mem_available().

This will avoid dom0 running out of memory due to excessive foreign
page mappings especially on ARM and on x86 in PVH mode, as those don't
have a pre-ballooned area which can be used for foreign mappings.

As the normal ballooning suffers from the same problem don't balloon
down more than si_mem_available() pages in one iteration. At the same
time limit the default maximum number of retries.

This is part of XSA-300.

Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/balloon.c