Commit 7718b60b authored by Rusty Russell's avatar Rusty Russell Committed by Linus Torvalds

[PATCH] cris signal fix

Stephen Rothwell <sfr@canb.auug.org.au>: small typo in signal code for cris, mips and mips64:
  Hi Linus,

  This looks very obvious to me but I may be mistaken.

  I haven't even attempted to build this as I don't have machines
  of any of the affected archs.


(Included in 2.4)
parent c1140e63
......@@ -440,7 +440,7 @@ do_page_fault(unsigned long address, struct pt_regs *regs,
* Send a sigbus, regardless of whether we were in kernel
* or user mode.
*/
info.si_code = SIGBUS;
info.si_signo = SIGBUS;
info.si_errno = 0;
info.si_code = BUS_ADRERR;
info.si_addr = (void *)address;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment