]> git.baikalelectronics.ru Git - kernel.git/commit
xen/gntdev: Fix partial gntdev_mmap() cleanup
authorRoss Lagerwall <ross.lagerwall@citrix.com>
Tue, 9 Jan 2018 12:10:22 +0000 (12:10 +0000)
committerBoris Ostrovsky <boris.ostrovsky@oracle.com>
Wed, 10 Jan 2018 13:38:44 +0000 (08:38 -0500)
commit78d0b675e742a818634a176063a873da3595d013
tree1098f9267ea80e9bcdf9367da3c7ba0dd847ae1c
parentc615f8bc783a80e58b5218e8f1aef1d2bb001a01
xen/gntdev: Fix partial gntdev_mmap() cleanup

When cleaning up after a partially successful gntdev_mmap(), unmap the
successfully mapped grant pages otherwise Xen will kill the domain if
in debug mode (Attempt to implicitly unmap a granted PTE) or Linux will
kill the process and emit "BUG: Bad page map in process" if Xen is in
release mode.

This is only needed when use_ptemod is true because gntdev_put_map()
will unmap grant pages itself when use_ptemod is false.

Signed-off-by: Ross Lagerwall <ross.lagerwall@citrix.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
drivers/xen/gntdev.c