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/arc/mm/fault.c b/arch/arc/mm/fault.c
index 7287c793d1c9..587dea524e6b 100644
--- a/arch/arc/mm/fault.c
+++ b/arch/arc/mm/fault.c
@@ -130,7 +130,7 @@ retry:
 		goto bad_area;
 	}
 
-	fault = handle_mm_fault(vma, address, flags);
+	fault = handle_mm_fault(vma, address, flags, NULL);
 
 	/* Quick path to respond to signals */
 	if (fault_signal_pending(fault, regs)) {