diff options
author | Paul Mundt | 2012-05-14 16:44:45 +0900 |
---|---|---|
committer | Paul Mundt | 2012-05-14 16:44:45 +0900 |
commit | 4de5185629f44942f60e2fd536709ef31bd5a9c1 (patch) | |
tree | 9e0d652a25c7c14d7d153e8ed322270bc554fa4f /arch/sh/kernel/cpu | |
parent | c06fd28387a3da2cc4763f7f471f735ccdd61b88 (diff) |
sh64: Invert page fault fast-path error path values.
This brings the sh64 version in line with the sh32 one with regards to
how errors are handled. Base work for further unification of the
implementations.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu')
-rw-r--r-- | arch/sh/kernel/cpu/sh5/entry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/sh5/entry.S b/arch/sh/kernel/cpu/sh5/entry.S index de60dc8d737d..ff1f0e6e9bec 100644 --- a/arch/sh/kernel/cpu/sh5/entry.S +++ b/arch/sh/kernel/cpu/sh5/entry.S @@ -335,7 +335,7 @@ tlb_miss: /* If the fast path handler fixed the fault, just drop through quickly to the restore code right away to return to the excepting context. */ - beqi/u r2, 0, tr1 + bnei/u r2, 0, tr1 fast_tlb_miss_restore: ld.q SP, SAVED_TR0, r2 |