From: Mischa Jonker Date: Thu, 26 Sep 2013 13:44:56 +0000 (+0200) Subject: ARC: Handle zero-overhead-loop in unaligned access handler X-Git-Tag: v3.10.17~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5cd12e7776183668bd92a5f5fe102113d3bb599a;p=platform%2Fkernel%2Flinux-stable.git ARC: Handle zero-overhead-loop in unaligned access handler commit c11eb222fd7d4db91196121dbf854178505d2751 upstream. If a load or store is the last instruction in a zero-overhead-loop, and it's misaligned, the loop would execute only once. This fixes that problem. Signed-off-by: Mischa Jonker Signed-off-by: Vineet Gupta Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/arc/kernel/unaligned.c b/arch/arc/kernel/unaligned.c index 4cd8163..116d3e0 100644 --- a/arch/arc/kernel/unaligned.c +++ b/arch/arc/kernel/unaligned.c @@ -233,6 +233,12 @@ int misaligned_fixup(unsigned long address, struct pt_regs *regs, regs->status32 &= ~STATUS_DE_MASK; } else { regs->ret += state.instr_len; + + /* handle zero-overhead-loop */ + if ((regs->ret == regs->lp_end) && (regs->lp_count)) { + regs->ret = regs->lp_start; + regs->lp_count--; + } } return 0;