xen/gntdevt: Fix race condition in gntdev_release()
authorMarek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Fri, 26 Jun 2015 01:28:24 +0000 (03:28 +0200)
committerDavid Vrabel <david.vrabel@citrix.com>
Tue, 30 Jun 2015 15:57:32 +0000 (16:57 +0100)
commit30b03d05e07467b8c6ec683ea96b5bffcbcd3931
treef53898fc4128087d1ba6d03365f76472a212eba0
parent6684fa1cdb1ebe804e9707f389255d461b2e95b0
xen/gntdevt: Fix race condition in gntdev_release()

While gntdev_release() is called the MMU notifier is still registered
and can traverse priv->maps list even if no pages are mapped (which is
the case -- gntdev_release() is called after all). But
gntdev_release() will clear that list, so make sure that only one of
those things happens at the same time.

Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
drivers/xen/gntdev.c