From b87251d01e082d0110372dc995184489d141f46a Mon Sep 17 00:00:00 2001 From: Sumit Semwal Date: Thu, 1 Sep 2022 12:58:06 +0530 Subject: [PATCH] Revert "BACKPORT: FROMLIST: ext4: implement speculative fault handling" This reverts commit a21ca34904e0a83b3eb9f7f63686a49e35e3fc64. Enabling SPF for ext4 breaks RB5 and DB845c testing on androidX-5.15 branches, causing vts-ltp tests to fail intermittently. While this is debugged, let's disable SPF for ext4 to enable testing meanwhile. Bug: 245389404 Fixes: a21ca34904e0 ("FROMLIST: ext4: implement speculative fault handling") Signed-off-by: Sumit Semwal Change-Id: Id8cf6e1548aef1db59cdeffbc1ee0b60affd76ea --- fs/ext4/file.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/ext4/file.c b/fs/ext4/file.c index 636963095b2f..b5efe92b5c6d 100644 --- a/fs/ext4/file.c +++ b/fs/ext4/file.c @@ -763,7 +763,6 @@ static const struct vm_operations_struct ext4_file_vm_ops = { .fault = filemap_fault, .map_pages = filemap_map_pages, .page_mkwrite = ext4_page_mkwrite, - .speculative = true, }; static int ext4_file_mmap(struct file *file, struct vm_area_struct *vma)