From 14624d3dc3bb528626d34565e4c0e78741275ef8 Mon Sep 17 00:00:00 2001 From: Laurent Dufour Date: Mon, 5 Nov 2018 18:43:01 +0100 Subject: [PATCH] FROMLIST: mm: don't do swap readahead during speculative page fault Vinayak Menon faced a panic because one thread was page faulting a page in swap, while another one was mprotecting a part of the VMA leading to a VMA split. This raise a panic in swap_vma_readahead() because the VMA's boundaries were not more matching the faulting address. To avoid this, if the page is not found in the swap, the speculative page fault is aborted to retry a regular page fault. Change-Id: Ia9d99fb5fde7bd89f38966838d115b6c8c15c9db Signed-off-by: Laurent Dufour Link: https://lore.kernel.org/patchwork/patch/1062665/ Bug: 161210518 Signed-off-by: Vinayak Menon --- mm/memory.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/mm/memory.c b/mm/memory.c index 2fc4a2e04e0d..3c6d065b93fb 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -3505,6 +3505,17 @@ vm_fault_t do_swap_page(struct vm_fault *vmf) lru_cache_add(page); swap_readpage(page, true); } + } else if (vmf->flags & FAULT_FLAG_SPECULATIVE) { + /* + * Don't try readahead during a speculative page fault + * as the VMA's boundaries may change in our back. + * If the page is not in the swap cache and synchronous + * read is disabled, fall back to the regular page fault + * mechanism. + */ + delayacct_clear_flag(DELAYACCT_PF_SWAPIN); + ret = VM_FAULT_RETRY; + goto out; } else { page = swapin_readahead(entry, GFP_HIGHUSER_MOVABLE, vmf);