Initial INC MR3 commit with EVO/BRAVO included and majority of the compile warnings ...
/arch/x86/mm/fault.c
blob:f4cee9028cf0b01e11951662b625f63371f627e6 -> blob:1739358b444d834b1adecdd02681e45216ae0eed
--- arch/x86/mm/fault.c
+++ arch/x86/mm/fault.c
@@ -801,8 +801,10 @@ do_sigbus(struct pt_regs *regs, unsigned
up_read(&mm->mmap_sem);
/* Kernel mode? Handle exceptions or die: */
- if (!(error_code & PF_USER))
+ if (!(error_code & PF_USER)) {
no_context(regs, error_code, address);
+ return;
+ }
/* User-space => ok to do another page fault: */
if (is_prefetch(regs, error_code, address))