summaryrefslogtreecommitdiffstats
path: root/mm/huge_memory.c
diff options
context:
space:
mode:
authorDominik Dingel2014-10-23 12:07:44 +0200
committerMartin Schwidefsky2014-10-27 13:27:24 +0100
commit593befa6ab74a805e4f503c8c737c3cffa8066b6 (patch)
treecc8765c8ae5a8b26b0a618a93a6d13b4f73a1b56 /mm/huge_memory.c
parents390/mm: recfactor global pgste updates (diff)
downloadkernel-qcow2-linux-593befa6ab74a805e4f503c8c737c3cffa8066b6.tar.gz
kernel-qcow2-linux-593befa6ab74a805e4f503c8c737c3cffa8066b6.tar.xz
kernel-qcow2-linux-593befa6ab74a805e4f503c8c737c3cffa8066b6.zip
mm: introduce mm_forbids_zeropage function
Add a new function stub to allow architectures to disable for an mm_structthe backing of non-present, anonymous pages with read-only empty zero pages. Signed-off-by: Dominik Dingel <dingel@linux.vnet.ibm.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'mm/huge_memory.c')
-rw-r--r--mm/huge_memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/huge_memory.c b/mm/huge_memory.c
index 74c78aa8bc2f..7e9c15cb93a9 100644
--- a/mm/huge_memory.c
+++ b/mm/huge_memory.c
@@ -805,7 +805,7 @@ int do_huge_pmd_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
return VM_FAULT_OOM;
if (unlikely(khugepaged_enter(vma)))
return VM_FAULT_OOM;
- if (!(flags & FAULT_FLAG_WRITE) &&
+ if (!(flags & FAULT_FLAG_WRITE) && !mm_forbids_zeropage(mm) &&
transparent_hugepage_use_zero_page()) {
spinlock_t *ptl;
pgtable_t pgtable;