]> git.baikalelectronics.ru Git - kernel.git/commit
Fix ZERO_PAGE breakage with vmware
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 23 Jun 2008 18:21:37 +0000 (11:21 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 23 Jun 2008 18:21:37 +0000 (11:21 -0700)
commitc071ac0f5ffaf8cfeb9fa3aa9705d36de970342e
tree73b414f017d15cd404528e2fdd555a93bdb69b61
parentf4dc365acee5b53f958f41950a4ef3420e178586
Fix ZERO_PAGE breakage with vmware

Commit 82b28ec09fcc47cf2a28ece2654a48549082c2cc ("Reinstate ZERO_PAGE
optimization in 'get_user_pages()' and fix XIP") broke vmware, as
reported by Jeff Chua:

  "This broke vmware 6.0.4.
   Jun 22 14:53:03.845: vmx| NOT_IMPLEMENTED
   /build/mts/release/bora-93057/bora/vmx/main/vmmonPosix.c:774"

and the reason seems to be that there's an old bug in how we handle do
FOLL_ANON on VM_SHARED areas in get_user_pages(), but since it only
triggered if the whole page table was missing, nobody had apparently hit
it before.

The recent changes to 'follow_page()' made the FOLL_ANON logic trigger
not just for whole missing page tables, but for individual pages as
well, and exposed this problem.

This fixes it by making the test for when FOLL_ANON is used more
careful, and also makes the code easier to read and understand by moving
the logic to a separate inline function.

Reported-and-tested-by: Jeff Chua <jeff.chua.linux@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/memory.c