diff options
author | Akira Takeuchi <takeuchi.akr@jp.panasonic.com> | 2008-12-10 12:43:34 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-10 13:34:33 -0800 |
commit | 54b71fba68efbf3ab89721a384df2ce757750979 (patch) | |
tree | 71c0423e9aa73d12e07539ae31a5e3e544cd6b24 /include | |
parent | 24646bd2269fbca95367bfd3eafbc9f7ade2e980 (diff) | |
download | linux-3.10-54b71fba68efbf3ab89721a384df2ce757750979.tar.gz linux-3.10-54b71fba68efbf3ab89721a384df2ce757750979.tar.bz2 linux-3.10-54b71fba68efbf3ab89721a384df2ce757750979.zip |
MN10300: Fix __put_user_asm8()
Fix __put_user_asm8() by jumping to the end label (3:) from the exception
handler, rather than jumping back to retry the second store instruction (label
2:).
Signed-off-by: Akira Takeuchi <takeuchi.akr@jp.panasonic.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-mn10300/uaccess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mn10300/uaccess.h b/include/asm-mn10300/uaccess.h index 46b9b647f3c..8a3a4dd5576 100644 --- a/include/asm-mn10300/uaccess.h +++ b/include/asm-mn10300/uaccess.h @@ -266,7 +266,7 @@ extern int __get_user_unknown(void); " .section .fixup,\"ax\" \n" \ "4: \n" \ " mov %5,%0 \n" \ - " jmp 2b \n" \ + " jmp 3b \n" \ " .previous \n" \ " .section __ex_table,\"a\"\n" \ " .balign 4 \n" \ |