]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
xen/balloon: fix accounting in alloc_xenballooned_pages error path
authorRoger Pau Monne <roger.pau@citrix.com>
Mon, 27 Jul 2020 09:13:39 +0000 (11:13 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Aug 2020 06:24:18 +0000 (08:24 +0200)
commit775aaa34caf248a8dd377addb8ea6f8505c4d87f
tree7bc03da9223766d1192eb96605ed18c69da0b9cc
parent3f29275098737306d6597ad7fd6983633120722b
xen/balloon: fix accounting in alloc_xenballooned_pages error path

commit 1951fa33ec259abdf3497bfee7b63e7ddbb1a394 upstream.

target_unpopulated is incremented with nr_pages at the start of the
function, but the call to free_xenballooned_pages will only subtract
pgno number of pages, and thus the rest need to be subtracted before
returning or else accounting will be skewed.

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20200727091342.52325-2-roger.pau@citrix.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/xen/balloon.c