diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-01-02 16:40:20 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-03-26 23:09:14 +0100 |
commit | b3c3025b2c5536c2b243f4947cffe58628758020 (patch) | |
tree | 0e2028c7fa0e2ac20371b54f9bb91729a34d8c1c /arch/mips/lib | |
parent | cc59fe5b88bff926376019851aa88e96b6039eea (diff) | |
download | op-kernel-dev-b3c3025b2c5536c2b243f4947cffe58628758020.zip op-kernel-dev-b3c3025b2c5536c2b243f4947cffe58628758020.tar.gz |
MIPS: lib: strncpy_user: Add EVA support
In non-EVA mode, strncpy_from_user* aliases are used for the
strncpy_from_kernel* symbols since the code is identical. In EVA
mode, new strcpy_from_user* symbols are used which use the EVA
specific instructions to load values from userspace.
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Diffstat (limited to 'arch/mips/lib')
-rw-r--r-- | arch/mips/lib/strncpy_user.S | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/mips/lib/strncpy_user.S b/arch/mips/lib/strncpy_user.S index 51b38ab..d3301cd 100644 --- a/arch/mips/lib/strncpy_user.S +++ b/arch/mips/lib/strncpy_user.S @@ -38,7 +38,11 @@ FEXPORT(__strncpy_from_\func\()_nocheck_asm) .set noreorder move t0, zero move v1, a1 +.ifeqs "\func","kernel" 1: EX(lbu, v0, (v1), .Lfault\@) +.else +1: EX(lbue, v0, (v1), .Lfault\@) +.endif PTR_ADDIU v1, 1 R10KCBARRIER(0(ra)) beqz v0, 2f @@ -63,4 +67,19 @@ FEXPORT(__strncpy_from_\func\()_nocheck_asm) .endm +#ifndef CONFIG_EVA + /* Set aliases */ + .global __strncpy_from_user_asm + .global __strncpy_from_user_nocheck_asm + .set __strncpy_from_user_asm, __strncpy_from_kernel_asm + .set __strncpy_from_user_nocheck_asm, __strncpy_from_kernel_nocheck_asm +#endif + +__BUILD_STRNCPY_ASM kernel + +#ifdef CONFIG_EVA + .set push + .set eva __BUILD_STRNCPY_ASM user + .set pop +#endif |