Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 144969
b: refs/heads/master
c: a6d5ff0
h: refs/heads/master
i:
  144967: 903cf3a
v: v3
  • Loading branch information
David Daney authored and Ralf Baechle committed May 14, 2009
1 parent efc1281 commit 5f56842
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: d0ce9a5a47113eec041a0972a0b86134b8fd2828
refs/heads/master: a6d5ff04e83b36e0d5c2c50ef4d18e9f38b5abc2
6 changes: 3 additions & 3 deletions trunk/arch/mips/kernel/unaligned.c
Original file line number Diff line number Diff line change
Expand Up @@ -482,19 +482,19 @@ static void emulate_load_store_insn(struct pt_regs *regs,
return;

die_if_kernel("Unhandled kernel unaligned access", regs);
send_sig(SIGSEGV, current, 1);
force_sig(SIGSEGV, current);

return;

sigbus:
die_if_kernel("Unhandled kernel unaligned access", regs);
send_sig(SIGBUS, current, 1);
force_sig(SIGBUS, current);

return;

sigill:
die_if_kernel("Unhandled kernel unaligned access or invalid instruction", regs);
send_sig(SIGILL, current, 1);
force_sig(SIGILL, current);
}

asmlinkage void do_ade(struct pt_regs *regs)
Expand Down

0 comments on commit 5f56842

Please sign in to comment.