projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d13cb2
)
MIPS: Return ENOSYS from sys32_syscall on 64bit kernels like elsewhere.
author
David Daney
<ddaney@caviumnetworks.com>
Fri, 31 Oct 2008 18:23:09 +0000
(11:23 -0700)
committer
Ralf Baechle
<ralf@linux-mips.org>
Thu, 4 Dec 2008 17:47:28 +0000
(17:47 +0000)
When the o32 errno was changed to ENOSYS, we forgot to update the code
for 64bit kernels.
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Acked-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/scall64-o32.S
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/kernel/scall64-o32.S
b/arch/mips/kernel/scall64-o32.S
index 3d55e3bbdfc32eac371a0ec2ee5635e715a90733..fefef4af8595493ec3c5414f3fb0fcaff14869b1 100644
(file)
--- a/
arch/mips/kernel/scall64-o32.S
+++ b/
arch/mips/kernel/scall64-o32.S
@@
-196,7
+196,7
@@
LEAF(sys32_syscall)
jr t2
/* Unreached */
-einval: li v0, -E
INVAL
+einval: li v0, -E
NOSYS
jr ra
END(sys32_syscall)