Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 367963
b: refs/heads/master
c: 610208b
h: refs/heads/master
i:
  367961: c63bbee
  367959: 4eac69d
v: v3
  • Loading branch information
Richard Kuo committed May 1, 2013
1 parent 413075c commit a59b6f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 41929798bb71a5997e4b8a760ab8e0dd4f592bb6
refs/heads/master: 610208bc8dec79e0ff4930a330187597d89ab861
4 changes: 2 additions & 2 deletions trunk/arch/hexagon/mm/vm_fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void do_page_fault(unsigned long address, long cause, struct pt_regs *regs)
}
info.si_errno = 0;
info.si_addr = (void __user *)address;
force_sig_info(info.si_code, &info, current);
force_sig_info(info.si_signo, &info, current);
return;

bad_area:
Expand All @@ -158,7 +158,7 @@ void do_page_fault(unsigned long address, long cause, struct pt_regs *regs)
info.si_errno = 0;
info.si_code = si_code;
info.si_addr = (void *)address;
force_sig_info(SIGSEGV, &info, current);
force_sig_info(info.si_signo, &info, current);
return;
}
/* Kernel-mode fault falls through */
Expand Down

0 comments on commit a59b6f5

Please sign in to comment.