Commit 9f8a5b84 authored by David S. Miller's avatar David S. Miller

[SPARC64]: Fix C-function name called by sun4v_mna trap code.

The trap code was calling itself :-)
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fbf1c68e
...@@ -265,7 +265,7 @@ sun4v_mna: ...@@ -265,7 +265,7 @@ sun4v_mna:
rd %pc, %g7 rd %pc, %g7
mov %l4, %o1 mov %l4, %o1
mov %l5, %o2 mov %l5, %o2
call sun4v_mna call sun4v_do_mna
add %sp, PTREGS_OFF, %o0 add %sp, PTREGS_OFF, %o0
ba,a,pt %xcc, rtrap_clr_l6 ba,a,pt %xcc, rtrap_clr_l6
......
...@@ -2250,7 +2250,7 @@ void mem_address_unaligned(struct pt_regs *regs, unsigned long sfar, unsigned lo ...@@ -2250,7 +2250,7 @@ void mem_address_unaligned(struct pt_regs *regs, unsigned long sfar, unsigned lo
force_sig_info(SIGBUS, &info, current); force_sig_info(SIGBUS, &info, current);
} }
void sun4v_mna(struct pt_regs *regs, unsigned long addr, unsigned long type_ctx) void sun4v_do_mna(struct pt_regs *regs, unsigned long addr, unsigned long type_ctx)
{ {
siginfo_t info; siginfo_t info;
......
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