VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Peter Xu <peterx@redhat.com> 2020-08-11 18:37:44 -0700 committer: Linus Torvalds <torvalds@linux-foundation.org> 2020-08-12 10:58:02 -0700 commit: bce617edecada007aee8610fbe2c14d10b8de2f6 parent: ed03d924587e7dfc54f1ace81e5f5a497a7d9666
Commit Summary:
mm: do page fault accounting in handle_mm_fault
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/arch/alpha/mm/fault.c b/arch/alpha/mm/fault.c
index c2303a8c2b9f..1983e43a5e2f 100644
--- a/arch/alpha/mm/fault.c
+++ b/arch/alpha/mm/fault.c
@@ -148,7 +148,7 @@ retry:
 	/* If for any reason at all we couldn't handle the fault,
 	   make sure we exit gracefully rather than endlessly redo
 	   the fault.  */
-	fault = handle_mm_fault(vma, address, flags);
+	fault = handle_mm_fault(vma, address, flags, NULL);
 
 	if (fault_signal_pending(fault, regs))
 		return;