diff options
author | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2012-04-03 18:05:47 +0100 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2012-05-11 13:13:53 +0100 |
commit | 25a873a89ffb910c5a28fe792b008e6a93d99242 (patch) | |
tree | 188828766e4bfa99f0538b3b182bf4d3753c97c4 /drivers/xen | |
parent | 7efde257ac4e92ca6b403b72873126ebfd0e9308 (diff) |
xen/gntdev: do not set VM_PFNMAP
commit e8e937be971d706061dc56220ff3605ab77622a7 upstream.
Since we are using the m2p_override we do have struct pages
corresponding to the user vma mmap'ed by gntdev.
Removing the VM_PFNMAP flag makes get_user_pages work on that vma.
An example test case would be using a Xen userspace block backend
(QDISK) on a file on NFS using O_DIRECT.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/gntdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/gntdev.c b/drivers/xen/gntdev.c index afca14d9042..625890c31da 100644 --- a/drivers/xen/gntdev.c +++ b/drivers/xen/gntdev.c @@ -692,7 +692,7 @@ static int gntdev_mmap(struct file *flip, struct vm_area_struct *vma) vma->vm_flags |= VM_RESERVED|VM_DONTEXPAND; if (use_ptemod) - vma->vm_flags |= VM_DONTCOPY|VM_PFNMAP; + vma->vm_flags |= VM_DONTCOPY; vma->vm_private_data = map; |