block: initialize the bounce pool if high memory may be added later
authorDavid Vrabel <david.vrabel@citrix.com>
Thu, 20 Oct 2011 19:24:30 +0000 (21:24 +0200)
committer黄涛 <huangtao@rock-chips.com>
Thu, 1 Aug 2013 12:41:46 +0000 (20:41 +0800)
commite8b4bf3802d2af04a710d8d9536de2086e0a6d86
tree1b119a0e0c9217c75a2e8d8996b5e6d88713c58b
parent3aede2c91c9f386a5a7c0bd9dccbf6e744543039
block: initialize the bounce pool if high memory may be added later

init_emergency_pool() does not create the page pool for bouncing block
requests if the current count of high pages is zero.  If high memory
may be added later (either via memory hotplug or a balloon driver in a
virtualized system) then a oops occurs if a request with a high page
need bouncing because the pool does not exist.

So, always create the pool if memory hotplug is enabled and change the
test so it's valid even if all high pages are currently in the balloon
(the balloon drivers adjust totalhigh_pages but not max_pfn).

Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
mm/bounce.c